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();
|
phi -= pcorrEqn.flux();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (runTime.outputTime())
|
|
||||||
{
|
|
||||||
volScalarField("contPhiPcorr", fvc::div(phi)).write();
|
|
||||||
pcorr.write();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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[])
|
|||||||
// 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"
|
||||||
|
|||||||
Reference in New Issue
Block a user