Info<< "Creating turbulence model\n" << endl; tmp talphaEff; IOobject turbulencePropertiesHeader ( "turbulenceProperties", runTime.constant(), mesh, IOobject::MUST_READ_IF_MODIFIED, IOobject::NO_WRITE, false ); if (turbulencePropertiesHeader.headerOk()) { autoPtr turbulence ( compressible::turbulenceModel::New ( rho, U, phi, thermo ) ); talphaEff = turbulence->alphaEff(); } else { talphaEff = tmp ( new volScalarField ( IOobject ( "alphaEff", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::NO_WRITE ), mesh, dimensionedScalar("0", dimMass/dimLength/dimTime, 0.0) ) ); }