Function used in the computation of the degenerate pressure
FT 19.12.2022
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
double precision, | intent(in) | :: | x |
DOUBLE PRECISION PURE FUNCTION f_wd(x)
!********************************************
!
!# Function used in the computation of
! the degenerate pressure
!
! FT 19.12.2022
!
!********************************************
IMPLICIT NONE
DOUBLE PRECISION, INTENT(IN):: x
f_wd= x*(2.D0*x**2 - 3.D0)*SQRT(x**2 + 1.D0) + 3.D0*ASINH(x)
END FUNCTION f_wd