23 lines
571 B
C
23 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;
|
||
|
}
|