Skip to content
Snippets Groups Projects
Commit a47b12ea authored by mattijs's avatar mattijs
Browse files

Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev

parents 7902377c 562cbe71
Branches
Tags
No related merge requests found
......@@ -76,10 +76,10 @@ class temperatureThermoBaffle1DFvPatchScalarField
solidThermoData(const dictionary& dict)
:
solidPtr_(new solidType(dict)),
transportDict_(dict.subDict("transportProperties")),
radiationDict_(dict.subDict("radiativeProperties")),
thermoDict_(dict.subDict("thermoProperties")),
densityDict_(dict.subDict("densityProperties"))
transportDict_(dict.subDict("transport")),
radiationDict_(dict.subDict("radiation")),
thermoDict_(dict.subDict("thermodynamics")),
densityDict_(dict.subDict("density"))
{}
......@@ -103,13 +103,13 @@ class temperatureThermoBaffle1DFvPatchScalarField
void write(Ostream& os) const
{
os.writeKeyword("transportProperties");
os.writeKeyword("transport");
os << transportDict_ << nl;
os.writeKeyword("radiativeProperties");
os.writeKeyword("radiation");
os << radiationDict_ << nl;
os.writeKeyword("thermoProperties");
os.writeKeyword("thermodynamics");
os << thermoDict_ << nl;
os.writeKeyword("densityProperties");
os.writeKeyword("density");
os << densityDict_ << nl;
}
......
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