for write to file binary MPI

This commit is contained in:
HRN 2024-05-24 20:50:53 +03:30
parent d1b6a04292
commit 32a2c20613
2 changed files with 3 additions and 0 deletions

View File

@ -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

View File

@ -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