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