Skip to content
Snippets Groups Projects
Commit 7b7fe8cf authored by Henry's avatar Henry
Browse files

multiphaseEulerFoam phaseModel : Correct re-reading of dictionary entries

parent b16e0582
Branches
Tags
No related merge requests found
...@@ -212,10 +212,10 @@ bool Foam::phaseModel::read(const dictionary& phaseDict) ...@@ -212,10 +212,10 @@ bool Foam::phaseModel::read(const dictionary& phaseDict)
//if (nuModel_->read(phaseDict_)) //if (nuModel_->read(phaseDict_))
{ {
phaseDict_.lookup("nu") >> nu_; phaseDict_.lookup("nu") >> nu_.value();
phaseDict_.lookup("kappa") >> kappa_; phaseDict_.lookup("kappa") >> kappa_.value();
phaseDict_.lookup("Cp") >> Cp_; phaseDict_.lookup("Cp") >> Cp_.value();
phaseDict_.lookup("rho") >> rho_; phaseDict_.lookup("rho") >> rho_.value();
return true; return true;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment