mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-06-12 16:26:23 +00:00
change in the type name of timeValue and sample dictionaries for settingsDict and domain
This commit is contained in:
@ -192,7 +192,7 @@ postSimulationFieldsDataBase::postSimulationFieldsDataBase
|
||||
systemControl &control,
|
||||
const dictionary& postDict,
|
||||
bool inSimulation,
|
||||
timeValue startTime
|
||||
TimeValueType startTime
|
||||
)
|
||||
:
|
||||
fieldsDataBase(control, postDict, inSimulation, startTime),
|
||||
@ -231,14 +231,14 @@ const pointStructure& postSimulationFieldsDataBase::pStruct()const
|
||||
return pStructPtr_();
|
||||
}
|
||||
|
||||
timeValue postSimulationFieldsDataBase::getNextTimeFolder() const
|
||||
TimeValueType postSimulationFieldsDataBase::getNextTimeFolder() const
|
||||
{
|
||||
return allValidFolders_.nextTime();
|
||||
}
|
||||
|
||||
timeValue postSimulationFieldsDataBase::setToNextTimeFolder()
|
||||
TimeValueType postSimulationFieldsDataBase::setToNextTimeFolder()
|
||||
{
|
||||
timeValue nextTime = allValidFolders_.nextTime();
|
||||
TimeValueType nextTime = allValidFolders_.nextTime();
|
||||
if(nextTime < 0.0) return nextTime;
|
||||
|
||||
allValidFolders_++;
|
||||
@ -254,9 +254,9 @@ timeValue postSimulationFieldsDataBase::setToNextTimeFolder()
|
||||
return nextTime;
|
||||
}
|
||||
|
||||
timeValue postSimulationFieldsDataBase::skipNextTimeFolder()
|
||||
TimeValueType postSimulationFieldsDataBase::skipNextTimeFolder()
|
||||
{
|
||||
timeValue nextTime = allValidFolders_.nextTime();
|
||||
TimeValueType nextTime = allValidFolders_.nextTime();
|
||||
if(nextTime < 0.0) return nextTime;
|
||||
|
||||
allValidFolders_++;
|
||||
|
@ -71,7 +71,7 @@ public:
|
||||
systemControl& control,
|
||||
const dictionary& postDict,
|
||||
bool inSimulation,
|
||||
timeValue startTime);
|
||||
TimeValueType startTime);
|
||||
|
||||
~postSimulationFieldsDataBase() override = default;
|
||||
|
||||
@ -84,11 +84,11 @@ public:
|
||||
|
||||
const pointStructure& pStruct()const override;
|
||||
|
||||
timeValue getNextTimeFolder()const override;
|
||||
TimeValueType getNextTimeFolder()const override;
|
||||
|
||||
timeValue setToNextTimeFolder() override;
|
||||
TimeValueType setToNextTimeFolder() override;
|
||||
|
||||
timeValue skipNextTimeFolder() override;
|
||||
TimeValueType skipNextTimeFolder() override;
|
||||
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user