This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/applications/solvers/solidMechanics/elasticThermalSolidFoam/readSigmaExpMethod.H

9 lines
497 B
C

//- how explicit component of sigma is to be calculated
word sigmaExpMethod(mesh.solutionDict().subDict("solidMechanics").lookup("sigmaExp"));
Info << sigmaExpMethod << " method chosen for calculation of sigmaExp" << endl;
if(sigmaExpMethod != "standard" && sigmaExpMethod != "surface" && sigmaExpMethod != "decompose")
{
FatalError << "sigmaExp method " << sigmaExpMethod << " not found!" << nl
<< "valid methods are:\nstandard\nsurface\ndecompose"
<< exit(FatalError);
}