This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/applications/solvers/solidMechanics/elasticPlasticNonLinULSolidFoam/createForceDisplacementFile.H

9 lines
194 B
C++
Raw Normal View History

OFstream * filePtr(NULL);
if(Pstream::master())
{
filePtr = new OFstream("forceDisp.dat");
OFstream& forceDispFile = *filePtr;
forceDispFile << "#Disp(mm)\tForce(N)" << endl;
}