mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: avoid ambiguous construct from tmp - utils/ pre+post processing
This commit is contained in:
@ -61,13 +61,13 @@ int main(int argc, char *argv[])
|
||||
// Cache the turbulence fields
|
||||
|
||||
Info<< "\nRetrieving field k from turbulence model" << endl;
|
||||
const volScalarField k = RASModel->k();
|
||||
const volScalarField k(RASModel->k());
|
||||
|
||||
Info<< "\nRetrieving field epsilon from turbulence model" << endl;
|
||||
const volScalarField epsilon = RASModel->epsilon();
|
||||
const volScalarField epsilon(RASModel->epsilon());
|
||||
|
||||
Info<< "\nRetrieving field R from turbulence model" << endl;
|
||||
const volSymmTensorField R = RASModel->R();
|
||||
const volSymmTensorField R(RASModel->R());
|
||||
|
||||
// Check availability of tubulence fields
|
||||
|
||||
|
||||
Reference in New Issue
Block a user