for write to file binary MPI
This commit is contained in:
parent
d1b6a04292
commit
32a2c20613
|
@ -126,6 +126,7 @@ bool pFlow::IOobject::writeObject() const
|
||||||
{
|
{
|
||||||
if(auto ptrOS = outStream(); ptrOS )
|
if(auto ptrOS = outStream(); ptrOS )
|
||||||
{
|
{
|
||||||
|
pOutput<<"Should write field "<<name() <<" file "<<ptrOS->name()<<endl;
|
||||||
return writeObject(ptrOS());
|
return writeObject(ptrOS());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -140,6 +141,7 @@ bool pFlow::IOobject::writeObject() const
|
||||||
|
|
||||||
if(auto ptrOS = dummyOutStream(); ptrOS )
|
if(auto ptrOS = dummyOutStream(); ptrOS )
|
||||||
{
|
{
|
||||||
|
pOutput<<"Should write field "<< name()<< " file " <<ptrOS->name()<<endl;
|
||||||
return writeObject(ptrOS());
|
return writeObject(ptrOS());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
@ -49,6 +49,7 @@ bool pFlow::boundaryExit::beforeIteration
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
if(step!= 2 )return true;
|
if(step!= 2 )return true;
|
||||||
|
|
||||||
if( !boundaryListUpdate(iterNum))return true;
|
if( !boundaryListUpdate(iterNum))return true;
|
||||||
|
|
||||||
// nothing have to be done
|
// nothing have to be done
|
||||||
|
|
Loading…
Reference in New Issue