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