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/elasticSolidFoam/readStressedFoamControls.H

17 lines
696 B
C
Raw Normal View History

const dictionary& stressControl =
mesh.solutionDict().subDict("stressedFoam");
2012-09-11 15:42:55 +00:00
int nCorr(readInt(stressControl.lookup("nCorrectors")));
scalar convergenceTolerance(readScalar(stressControl.lookup("U")));
Switch predictor(stressControl.lookup("predictor"));
int infoFrequency(readInt(stressControl.lookup("infoFrequency")));
Switch aitkenRelax(stressControl.lookup("aitkenRelaxation"));
//Switch thirdOrderCorrection(stressControl.lookup("thirdOrderCorrection"));
//Switch relaxEqn(stressControl.lookup("relaxEquation"));
// if(relaxEqn && solidInterfaceCorr)
// {
// FatalError << "relaxEqn and solidInterface may not be used concurrently"
// << exit(FatalError);
// }