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

Cleaning up different output messages

parent 7ad2ace8
Branches
Tags
1 merge request!121Merge develop into master for v1706 release
...@@ -104,10 +104,4 @@ if (mesh.changing()) ...@@ -104,10 +104,4 @@ if (mesh.changing())
phi -= pcorrEqn.flux(); phi -= pcorrEqn.flux();
} }
} }
if (runTime.outputTime())
{
volScalarField("contPhiPcorr", fvc::div(phi)).write();
pcorr.write();
}
} }
...@@ -56,16 +56,6 @@ if (adjustFringe) ...@@ -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
......
...@@ -101,15 +101,6 @@ int main(int argc, char *argv[]) ...@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment