Skip to content
Snippets Groups Projects
Commit 5f5fc376 authored by sergio's avatar sergio
Browse files

BUG: Correcting psi member function return

parent acd5b1f0
Branches
Tags
No related merge requests found
......@@ -121,7 +121,7 @@ inline Foam::scalar Foam::incompressiblePerfectGas<Specie>::psi
scalar T
) const
{
return 1.0/(this->R()*T);
return 0.0;
}
......@@ -132,7 +132,7 @@ inline Foam::scalar Foam::incompressiblePerfectGas<Specie>::Z
scalar
) const
{
return 1.0;
return 0.0;
}
......
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