Skip to content
Snippets Groups Projects
Commit 27cc9143 authored by Andrew Heather's avatar Andrew Heather
Browse files

BUG: liquidProperties - corrected read scalar (was label). See #2142

parent c4079684
Branches
Tags
No related merge requests found
...@@ -72,16 +72,16 @@ Foam::liquidProperties::liquidProperties ...@@ -72,16 +72,16 @@ Foam::liquidProperties::liquidProperties
Foam::liquidProperties::liquidProperties(const dictionary& dict) Foam::liquidProperties::liquidProperties(const dictionary& dict)
: :
thermophysicalProperties(dict), thermophysicalProperties(dict),
Tc_(dict.get<label>("Tc")), Tc_(dict.get<scalar>("Tc")),
Pc_(dict.get<label>("Pc")), Pc_(dict.get<scalar>("Pc")),
Vc_(dict.get<label>("Vc")), Vc_(dict.get<scalar>("Vc")),
Zc_(dict.get<label>("Zc")), Zc_(dict.get<scalar>("Zc")),
Tt_(dict.get<label>("Tt")), Tt_(dict.get<scalar>("Tt")),
Pt_(dict.get<label>("Pt")), Pt_(dict.get<scalar>("Pt")),
Tb_(dict.get<label>("Tb")), Tb_(dict.get<scalar>("Tb")),
dipm_(dict.get<label>("dipm")), dipm_(dict.get<scalar>("dipm")),
omega_(dict.get<label>("omega")), omega_(dict.get<scalar>("omega")),
delta_(dict.get<label>("delta")) delta_(dict.get<scalar>("delta"))
{} {}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment