Skip to content
Snippets Groups Projects
Commit de55ada9 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

BUG: typo in solidProperties prevents re-reading of "Hf" (fixes #1927)

parent fbbff15e
No related branches found
No related tags found
No related merge requests found
...@@ -2,8 +2,11 @@ ...@@ -2,8 +2,11 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation \\ / A nd | www.openfoam.com
\\/ M anipulation | \\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2017 OpenFOAM Foundation
Copyright (C) 2018-2019 OpenCFD Ltd.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
This file is part of OpenFOAM. This file is part of OpenFOAM.
...@@ -70,7 +73,7 @@ void Foam::solidProperties::readIfPresent(const dictionary& dict) ...@@ -70,7 +73,7 @@ void Foam::solidProperties::readIfPresent(const dictionary& dict)
dict.readIfPresent("rho", rho_); dict.readIfPresent("rho", rho_);
dict.readIfPresent("Cp", Cp_); dict.readIfPresent("Cp", Cp_);
dict.readIfPresentCompat("kappa", {{"K", 1612}}, kappa_); dict.readIfPresentCompat("kappa", {{"K", 1612}}, kappa_);
dict.readIfPresent("Hf_", Hf_); dict.readIfPresent("Hf", Hf_);
dict.readIfPresent("emissivity", emissivity_); dict.readIfPresent("emissivity", emissivity_);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment