Merge branch 'main' of github.com:PhasicFlow/phasicFlow
This commit is contained in:
commit
83a6e4baa1
|
@ -50,7 +50,7 @@ pFlow::postprocessData::postprocessData::postprocessData
|
||||||
if( !dict_.fileExist() || !dict_.headerOk() )
|
if( !dict_.fileExist() || !dict_.headerOk() )
|
||||||
{
|
{
|
||||||
WARNING<<"You requested postprocessData function while,"
|
WARNING<<"You requested postprocessData function while,"
|
||||||
<<" the dictionary system/postprocessDataDict does not exist."
|
<<" the dictionary settings/postprocessDataDict does not exist."
|
||||||
<<" This feature is disabled in the current run."<<END_WARNING;
|
<<" This feature is disabled in the current run."<<END_WARNING;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,7 +22,7 @@ bool postSimulationFieldsDataBase::loadPointFieldToTime(const word &name)
|
||||||
{
|
{
|
||||||
allPointFields_.push_back
|
allPointFields_.push_back
|
||||||
(
|
(
|
||||||
makeUnique<pointField_H<real>>
|
makeUnique<pointField_D<real>>
|
||||||
(
|
(
|
||||||
objectFile
|
objectFile
|
||||||
(
|
(
|
||||||
|
@ -40,7 +40,7 @@ bool postSimulationFieldsDataBase::loadPointFieldToTime(const word &name)
|
||||||
{
|
{
|
||||||
allPointFields_.push_back
|
allPointFields_.push_back
|
||||||
(
|
(
|
||||||
makeUnique<pointField_H<realx3>>
|
makeUnique<pointField_D<realx3>>
|
||||||
(
|
(
|
||||||
objectFile
|
objectFile
|
||||||
(
|
(
|
||||||
|
@ -58,7 +58,7 @@ bool postSimulationFieldsDataBase::loadPointFieldToTime(const word &name)
|
||||||
{
|
{
|
||||||
allPointFields_.push_back
|
allPointFields_.push_back
|
||||||
(
|
(
|
||||||
makeUnique<pointField_H<realx4>>
|
makeUnique<pointField_D<realx4>>
|
||||||
(
|
(
|
||||||
objectFile
|
objectFile
|
||||||
(
|
(
|
||||||
|
@ -76,7 +76,7 @@ bool postSimulationFieldsDataBase::loadPointFieldToTime(const word &name)
|
||||||
{
|
{
|
||||||
allPointFields_.push_back
|
allPointFields_.push_back
|
||||||
(
|
(
|
||||||
makeUnique<pointField_H<uint32>>
|
makeUnique<pointField_D<uint32>>
|
||||||
(
|
(
|
||||||
objectFile
|
objectFile
|
||||||
(
|
(
|
||||||
|
@ -263,4 +263,4 @@ TimeValueType postSimulationFieldsDataBase::skipNextTimeFolder()
|
||||||
return nextTime;
|
return nextTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace pFlow::postprocessData
|
} // namespace pFlow::postprocessData
|
||||||
|
|
Loading…
Reference in New Issue