diff --git a/src/functionObjects/forces/forceCoeffs/forceCoeffs.C b/src/functionObjects/forces/forceCoeffs/forceCoeffs.C index 635edfd6f4184504a721ee9eb3b764a04b610c7b..27a95872ac872fa3fc977487f53d5c2486c8a3b8 100644 --- a/src/functionObjects/forces/forceCoeffs/forceCoeffs.C +++ b/src/functionObjects/forces/forceCoeffs/forceCoeffs.C @@ -163,6 +163,9 @@ bool Foam::functionObjects::forceCoeffs::read(const dictionary& dict) // Free stream velocity magnitude dict.lookup("magUInf") >> magUInf_; + // Reference (free stream) density + dict.lookup("rhoInf") >> rhoRef_; + // Reference length and area scales dict.lookup("lRef") >> lRef_; dict.lookup("Aref") >> Aref_; diff --git a/src/functionObjects/forces/forces/forces.C b/src/functionObjects/forces/forces/forces.C index ec0f0810e59a1a96d075b78d3366ffd6dcd57630..9ade518a92bd7120851d4bd685ffa2b2529617e4 100644 --- a/src/functionObjects/forces/forces/forces.C +++ b/src/functionObjects/forces/forces/forces.C @@ -638,7 +638,7 @@ bool Foam::functionObjects::forces::read(const dictionary& dict) // Reference density needed for incompressible calculations if (rhoName_ == "rhoInf") { - rhoRef_ = readScalar(dict.lookup("rhoInf")); + dict.lookup("rhoInf") >> rhoRef_; } // Reference pressure, 0 by default