Skip to content
Snippets Groups Projects
Commit 43febddd authored by Andrew Heather's avatar Andrew Heather
Browse files

BUG: Removed Debug statements

parent 15a763b9
Branches
Tags
No related merge requests found
......@@ -157,10 +157,8 @@ Foam::tmp<Foam::volScalarField> Foam::functionObjects::pressure::calcPressure
}
case ISENTROPIC:
{
DebugVar("getting thermo");
const basicThermo* thermoPtr =
p.mesh().lookupObjectPtr<basicThermo>(basicThermo::dictName);
DebugVar("got thermo");
if (!thermoPtr)
{
......@@ -169,16 +167,13 @@ DebugVar("got thermo");
<< "thermodynamics package"
<< exit(FatalError);
}
DebugVar("calc gamma");
const volScalarField gamma(thermoPtr->gamma());
DebugVar(gamma);
const volScalarField Mb
(
mag(lookupObject<volVectorField>(UName_))
/sqrt(gamma*tp.ref()/thermoPtr->rho())
);
DebugVar(Mb);
return tp()*(pow(1 + (gamma - 1)/2*sqr(Mb), gamma/(gamma - 1)));
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment