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/elasticIncrAcpSolidFoam/readSolidMechanicsControls.H
2014-06-01 20:12:52 +02:00

21 lines
788 B
C++

const dictionary& stressControl =
mesh.solutionDict().subDict("solidMechanics");
int nCorr(readInt(stressControl.lookup("nCorrectors")));
scalar convergenceTolerance(readScalar(stressControl.lookup("DU")));
// componentReferenceList cr
// (
// stressControl.lookup("componentReference"),
// componentReference::iNew(mesh)
// );
Switch dynamicTimeStep(stressControl.lookup("dynamicTimeStep"));
scalar deltaTmin(readScalar(stressControl.lookup("deltaTmin")));
scalar deltaTmax(readScalar(stressControl.lookup("deltaTmax")));
int infoFrequency(readInt(stressControl.lookup("infoFrequency")));
//Info << "\nFrequency of info statements is " << infoFrequency << endl;
Switch aitkenRelax(stressControl.lookup("aitkenRelaxation"));
Switch predictor(stressControl.lookup("predictor"));