3 if (couplingProperties.found("couplingScheme"))
5 couplingScheme = word(couplingProperties.lookup("couplingScheme"));
9 (couplingScheme == "IQN-ILS")
10 || (couplingScheme == "Aitken")
11 || (couplingScheme == "FixedRelaxation")
14 Info<< "Selecting coupling scheme " << couplingScheme << endl;
21 ) << "couplingScheme: " << couplingScheme
22 << " is not a valid choice. "
23 << "Options are: IQN-ILS, Aitken, FixedRelaxation"
28 // scalar couplingReuse = scalar
32 // couplingProperties.lookup("couplingReuse")
36 scalar interfaceDeformationLimit
38 readScalar(couplingProperties.lookup("interfaceDeformationLimit"))
42 IOdictionary dynamicMeshDict
55 // Switch twoDMotion(dynamicMeshDict.lookup("twoDMotion"));
57 scalar fsiRelaxationFactor;
58 scalar fsiRelaxationFactorMin;
60 fsiRelaxationFactorMin = scalar
62 readScalar(couplingProperties.lookup("fsiRelaxationFactor"))
64 fsiRelaxationFactor = fsiRelaxationFactorMin;
66 scalar outerCorrTolerance
68 readScalar(couplingProperties.lookup("outerCorrTolerance"))
71 Switch fsi(couplingProperties.lookup("fsi"));