Merge branch 'develop' of develop.openfoam.com:Development/OpenFOAM-dev-OpenCFD into develop

This commit is contained in:
mattijs
2015-12-17 09:04:24 +00:00
2 changed files with 10 additions and 3 deletions

View File

@ -25,6 +25,7 @@ License
#include "uniformInterpolationTable.H" #include "uniformInterpolationTable.H"
#include "Time.H" #include "Time.H"
#include "IOstream.H"
// * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * // // * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * //
@ -228,7 +229,12 @@ void Foam::uniformInterpolationTable<Type>::write() const
dict.add("bound", bound_); dict.add("bound", bound_);
} }
dict.regIOobject::write(); dict.regIOobject::writeObject
(
IOstream::ASCII,
IOstream::currentVersion,
dict.time().writeCompression()
);
} }

View File

@ -42,9 +42,10 @@ mixture
radiation radiation
{ {
radiationModel opaqueSolid; radiationModel opaqueSolid;
absorptionEmissionModel none; absorptionEmissionModel none;
scatterModel none; scatterModel none;
transmissivityModel none;
} }
// ************************************************************************* // // ************************************************************************* //