Cleaning up different output messages

This commit is contained in:
sergio
2017-06-19 08:00:10 -07:00
parent 560c015821
commit ad8dfd4ad8
3 changed files with 0 additions and 25 deletions

View File

@ -104,10 +104,4 @@ if (mesh.changing())
phi -= pcorrEqn.flux(); phi -= pcorrEqn.flux();
} }
} }
if (runTime.outputTime())
{
volScalarField("contPhiPcorr", fvc::div(phi)).write();
pcorr.write();
}
} }

View File

@ -56,16 +56,6 @@ if (adjustFringe)
fvc::makeAbsolute(phiHbyA, U); fvc::makeAbsolute(phiHbyA, U);
} }
if (runTime.outputTime())
{
volScalarField
(
"div(phiHbyA)",
fvc::div(phiHbyA)
//interpolatedCells*cellMask*fvc::div(phiHbyA)
).write();
}
while (pimple.correctNonOrthogonal()) while (pimple.correctNonOrthogonal())
{ {
fvScalarMatrix pEqn fvScalarMatrix pEqn

View File

@ -101,15 +101,6 @@ int main(int argc, char *argv[])
// Calculate absolute flux from the mapped surface velocity // Calculate absolute flux from the mapped surface velocity
phi = mesh.Sf() & Uf; phi = mesh.Sf() & Uf;
if (runTime.outputTime())
{
volScalarField
(
"contPhi",
interpolatedCells*cellMask*fvc::div(phi)
).write();
}
if (mesh.changing() && correctPhi) if (mesh.changing() && correctPhi)
{ {
#include "correctPhi.H" #include "correctPhi.H"