12 lines
412 B
C++
12 lines
412 B
C++
const dictionary& stressControl =
|
|
mesh.solutionDict().subDict("solidMechanics");
|
|
|
|
int nCorr(readInt(stressControl.lookup("nCorrectors")));
|
|
|
|
scalar convergenceToleranceU(readScalar(stressControl.lookup("U")));
|
|
|
|
scalar convergenceToleranceT(readScalar(stressControl.lookup("U")));
|
|
|
|
int infoFrequency(readInt(stressControl.lookup("infoFrequency")));
|
|
|
|
Switch aitkenRelax(stressControl.lookup("aitkenRelaxation"));
|