Files
openfoam/src/OpenFOAM/db/Time/TimeIO.C
2008-12-29 13:20:04 +00:00

321 lines
7.8 KiB
C

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 1991-2008 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
\*---------------------------------------------------------------------------*/
#include "Time.H"
#include "PstreamReduceOps.H"
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
void Foam::Time::readDict()
{
if (!deltaTchanged_)
{
deltaT_ = readScalar(controlDict_.lookup("deltaT"));
}
if (controlDict_.found("writeControl"))
{
writeControl_ = writeControlNames_.read
(
controlDict_.lookup("writeControl")
);
}
scalar oldWriteInterval = writeInterval_;
if (controlDict_.readIfPresent("writeInterval", writeInterval_))
{
if (writeControl_ == wcTimeStep && label(writeInterval_) < 1)
{
FatalIOErrorIn("Time::readDict()", controlDict_)
<< "writeInterval < 1 for writeControl timeStep"
<< exit(FatalIOError);
}
}
else
{
controlDict_.lookup("writeFrequency") >> writeInterval_;
}
if (oldWriteInterval != writeInterval_)
{
switch(writeControl_)
{
case wcRunTime:
case wcAdjustableRunTime:
// Recalculate outputTimeIndex_ to be in units of current
// writeInterval.
outputTimeIndex_ = label
(
outputTimeIndex_
* oldWriteInterval
/ writeInterval_
);
break;
default:
break;
}
}
if (controlDict_.readIfPresent("purgeWrite", purgeWrite_))
{
if (purgeWrite_ < 0)
{
WarningIn("Time::readDict()")
<< "invalid value for purgeWrite " << purgeWrite_
<< ", should be >= 0, setting to 0"
<< endl;
purgeWrite_ = 0;
}
}
if (controlDict_.found("timeFormat"))
{
word formatName(controlDict_.lookup("timeFormat"));
if (formatName == "general")
{
format_ = general;
}
else if (formatName == "fixed")
{
format_ = fixed;
}
else if (formatName == "scientific")
{
format_ = scientific;
}
else
{
WarningIn("Time::readDict()")
<< "unsupported time format " << formatName
<< endl;
}
}
controlDict_.readIfPresent("timePrecision", precision_);
// stopAt at 'endTime' or a specified value
// if nothing is specified, the endTime is zero
if (controlDict_.found("stopAt"))
{
stopAt_ = stopAtControlNames_.read(controlDict_.lookup("stopAt"));
if (stopAt_ == saEndTime)
{
controlDict_.lookup("endTime") >> endTime_;
}
else
{
endTime_ = GREAT;
}
}
else if (!controlDict_.readIfPresent("endTime", endTime_))
{
endTime_ = 0;
}
dimensionedScalar::name() = timeName(value());
if (controlDict_.found("writeVersion"))
{
writeVersion_ = IOstream::versionNumber
(
controlDict_.lookup("writeVersion")
);
}
if (controlDict_.found("writeFormat"))
{
writeFormat_ = IOstream::formatEnum
(
controlDict_.lookup("writeFormat")
);
}
if (controlDict_.found("writePrecision"))
{
IOstream::defaultPrecision
(
readUint(controlDict_.lookup("writePrecision"))
);
Sout.precision(IOstream::defaultPrecision());
Serr.precision(IOstream::defaultPrecision());
Pout.precision(IOstream::defaultPrecision());
Perr.precision(IOstream::defaultPrecision());
}
if (controlDict_.found("writeCompression"))
{
writeCompression_ = IOstream::compressionEnum
(
controlDict_.lookup("writeCompression")
);
}
controlDict_.readIfPresent("graphFormat", graphFormat_);
if (controlDict_.found("runTimeModifiable"))
{
runTimeModifiable_ = Switch(controlDict_.lookup("runTimeModifiable"));
}
}
bool Foam::Time::read()
{
if (controlDict_.regIOobject::read())
{
readDict();
return true;
}
else
{
return false;
}
}
void Foam::Time::readModifiedObjects()
{
if (runTimeModifiable_)
{
// For parallel runs check if any object's file has been modified
// and only call readIfModified on each object if this is the case
// to avoid unnecessary reductions in readIfModified for each object
bool anyModified = true;
if (Pstream::parRun())
{
anyModified = controlDict_.modified() || objectRegistry::modified();
bool anyModifiedOnThisProc = anyModified;
reduce(anyModified, andOp<bool>());
if (anyModifiedOnThisProc && !anyModified)
{
WarningIn("Time::readModifiedObjects()")
<< "Delaying reading objects due to inconsistent "
"file time-stamps between processors"
<< endl;
}
}
if (anyModified)
{
if (controlDict_.readIfModified())
{
readDict();
functionObjects_.read();
}
objectRegistry::readModifiedObjects();
}
}
}
bool Foam::Time::writeObject
(
IOstream::streamFormat fmt,
IOstream::versionNumber ver,
IOstream::compressionType cmp
) const
{
if (outputTime())
{
IOdictionary timeDict
(
IOobject
(
"time",
timeName(),
"uniform",
*this,
IOobject::NO_READ,
IOobject::NO_WRITE,
false
)
);
timeDict.add("index", timeIndex_);
timeDict.add("deltaT", deltaT_);
timeDict.add("deltaT0", deltaT0_);
timeDict.regIOobject::writeObject
(
fmt,
ver,
cmp
);
bool writeOK = objectRegistry::writeObject
(
fmt,
ver,
cmp
);
if (writeOK && purgeWrite_)
{
previousOutputTimes_.push(timeName());
while(previousOutputTimes_.size() > purgeWrite_)
{
rmDir(objectRegistry::path(previousOutputTimes_.pop()));
}
}
return writeOK;
}
else
{
return false;
}
}
bool Foam::Time::writeNow()
{
outputTime_ = true;
return write();
}
bool Foam::Time::writeAndEnd()
{
stopAt_ = saWriteNow;
endTime_ = value();
return writeNow();
}
// ************************************************************************* //