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 ...@@ -76,10 +76,10 @@ class temperatureThermoBaffle1DFvPatchScalarField
solidThermoData(const dictionary& dict) solidThermoData(const dictionary& dict)
: :
solidPtr_(new solidType(dict)), solidPtr_(new solidType(dict)),
transportDict_(dict.subDict("transportProperties")), transportDict_(dict.subDict("transport")),
radiationDict_(dict.subDict("radiativeProperties")), radiationDict_(dict.subDict("radiation")),
thermoDict_(dict.subDict("thermoProperties")), thermoDict_(dict.subDict("thermodynamics")),
densityDict_(dict.subDict("densityProperties")) densityDict_(dict.subDict("density"))
{} {}
...@@ -103,13 +103,13 @@ class temperatureThermoBaffle1DFvPatchScalarField ...@@ -103,13 +103,13 @@ class temperatureThermoBaffle1DFvPatchScalarField
void write(Ostream& os) const void write(Ostream& os) const
{ {
os.writeKeyword("transportProperties"); os.writeKeyword("transport");
os << transportDict_ << nl; os << transportDict_ << nl;
os.writeKeyword("radiativeProperties"); os.writeKeyword("radiation");
os << radiationDict_ << nl; os << radiationDict_ << nl;
os.writeKeyword("thermoProperties"); os.writeKeyword("thermodynamics");
os << thermoDict_ << nl; os << thermoDict_ << nl;
os.writeKeyword("densityProperties"); os.writeKeyword("density");
os << densityDict_ << nl; os << densityDict_ << nl;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment