Remove trailing whitespace systematically
[foam-extend-3.2.git] / applications / solvers / solidMechanics / elasticPlasticSolidFoam / createSolidInterface.H
blobe91d73587c6efd9c369b6122fd637abc79f2b16a
1 Switch solidInterfaceCorr(false);
3 solidInterface* solidInterfacePtr(NULL);
6     const dictionary& stressControl =
7       mesh.solutionDict().subDict("solidMechanics");
9     solidInterfaceCorr = Switch(stressControl.lookup("solidInterface"));
11     if(solidInterfaceCorr)
12       {
13         Info << "Creating solid interface correction" << endl;
14         solidInterfacePtr = new solidInterface(mesh, rheology);
15         solidInterfacePtr->modifyProperties(muf, lambdaf);
17         //- solidInterface needs muf and lambdaf to be used for divDSigmaExp
18         if(divDSigmaExpMethod != "surface" && divDSigmaExpMethod != "decompose")
19           {
20             FatalError << "divDSigmaExp must be decompose or surface when solidInterface is on"
21                        << exit(FatalError);
22           }
23       }