Skip to content
Snippets Groups Projects
Commit 85a8c669 authored by graham's avatar graham
Browse files

ENH: InteractionLists. Making lagrangian/referredParticleCloud/ to

write referredWallFaces.obj if doesn't exist.
parent 8a9b8718
No related branches found
No related tags found
No related merge requests found
......@@ -1032,13 +1032,11 @@ void Foam::InteractionLists<ParticleType>::prepareWallDataToRefer()
template<class ParticleType>
void Foam::InteractionLists<ParticleType>::writeReferredWallFaces() const
{
OFstream str
(
mesh_.time().timeName()
/cloud::prefix
/cloud_.name()
/"referredWallFaces.obj"
);
fileName objDir = mesh_.time().timeName()/cloud::prefix/cloud_.name();
mkDir(objDir);
OFstream str(objDir /"referredWallFaces.obj");
Info<< " Writing " << str.name() << endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment