Return gamma - 1.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(eos_compressible), | intent(in) | :: | self | Equation of state. |
gamma - 1 value.
elemental function gm1(self) result(gm1_)
!< Return `gamma - 1`.
class(eos_compressible), intent(in) :: self !< Equation of state.
real(R8P) :: gm1_ !< `gamma - 1` value.
gm1_ = self%gm1_
endfunction gm1