dictionary: changes field scoping operator from "::" to '.'

This commit is contained in:
Henry
2012-10-12 12:47:54 +01:00
parent 7db3286f34
commit d40a374cbc
47 changed files with 106 additions and 100 deletions

View File

@ -116,7 +116,7 @@ void PDRkEpsilon::correct()
}
tmp<volTensorField> tgradU = fvc::grad(U_);
volScalarField G("RASModel::G", mut_*(tgradU() && dev(twoSymm(tgradU()))));
volScalarField G("RASModel.G", mut_*(tgradU() && dev(twoSymm(tgradU()))));
tgradU.clear();
// Update espsilon and G at the wall

View File

@ -136,7 +136,7 @@ int main(int argc, char *argv[])
}
// Create G field - used by RAS wall functions
volScalarField G("RASModel::G", nut*2*sqr(S));
volScalarField G("RASModel.G", nut*2*sqr(S));
//--- Read and modify turbulence fields