Skip to content
Snippets Groups Projects
Commit ad8dfd4a authored by sergio's avatar sergio
Browse files

Cleaning up different output messages

parent 560c0158
Branches
Tags
No related merge requests found
......@@ -104,10 +104,4 @@ if (mesh.changing())
phi -= pcorrEqn.flux();
}
}
if (runTime.outputTime())
{
volScalarField("contPhiPcorr", fvc::div(phi)).write();
pcorr.write();
}
}
......@@ -56,16 +56,6 @@ if (adjustFringe)
fvc::makeAbsolute(phiHbyA, U);
}
if (runTime.outputTime())
{
volScalarField
(
"div(phiHbyA)",
fvc::div(phiHbyA)
//interpolatedCells*cellMask*fvc::div(phiHbyA)
).write();
}
while (pimple.correctNonOrthogonal())
{
fvScalarMatrix pEqn
......
......@@ -101,15 +101,6 @@ int main(int argc, char *argv[])
// Calculate absolute flux from the mapped surface velocity
phi = mesh.Sf() & Uf;
if (runTime.outputTime())
{
volScalarField
(
"contPhi",
interpolatedCells*cellMask*fvc::div(phi)
).write();
}
if (mesh.changing() && correctPhi)
{
#include "correctPhi.H"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment