db7fac3f24
git-svn-id: https://openfoam-extend.svn.sourceforge.net/svnroot/openfoam-extend/trunk/Core/OpenFOAM-1.5-dev@1731 e4e07f05-0c2f-0410-a05a-b8ba57e0c909
22 lines
571 B
C
22 lines
571 B
C
{
|
|
volScalarField thermoRho = psi*p + (1.0 - gamma)*rhol0;
|
|
|
|
dimensionedScalar totalMass = fvc::domainIntegrate(rho);
|
|
|
|
scalar sumLocalContErr =
|
|
(
|
|
fvc::domainIntegrate(mag(rho - thermoRho))/totalMass
|
|
).value();
|
|
|
|
scalar globalContErr =
|
|
(
|
|
fvc::domainIntegrate(rho - thermoRho)/totalMass
|
|
).value();
|
|
|
|
cumulativeContErr += globalContErr;
|
|
|
|
Info<< "time step continuity errors : sum local = " << sumLocalContErr
|
|
<< ", global = " << globalContErr
|
|
<< ", cumulative = " << cumulativeContErr
|
|
<< endl;
|
|
}
|