mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Cleaning up different output messages
This commit is contained in:
@ -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"
|
||||
|
||||
Reference in New Issue
Block a user