Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
real(kind=real64), | public | :: | Lf |
Latent heat of fusion |
|||
real(kind=real64), | public | :: | Tf |
Freezing point |
|||
real(kind=real64), | private | :: | TtoK | = | 273.15d0 |
Conversion from Celsius to Kelvin |
|
real(kind=real64), | private | :: | g | = | 9.80665d0 |
Gravitational acceleration |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(abst_gcc), | intent(in) | :: | self | |||
real(kind=real64), | intent(in) | :: | T | |||
real(kind=real64), | intent(in), | optional | :: | Pw | ||
real(kind=real64), | intent(in), | optional | :: | rhoW | ||
real(kind=real64), | intent(in), | optional | :: | rhoI |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(abst_gcc), | intent(in) | :: | self | |||
real(kind=real64), | intent(in) | :: | T | |||
real(kind=real64), | intent(in), | optional | :: | Pw | ||
real(kind=real64), | intent(in), | optional | :: | rhoW | ||
real(kind=real64), | intent(in), | optional | :: | rhoI |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(abst_gcc), | intent(in) | :: | self | |||
real(kind=real64), | intent(in) | :: | T | |||
real(kind=real64), | intent(in), | optional | :: | Pw | ||
real(kind=real64), | intent(in), | optional | :: | rhoW | ||
real(kind=real64), | intent(in), | optional | :: | rhoI |
type, abstract :: abst_gcc real(real64) :: Tf !! Freezing point real(real64) :: Lf !! Latent heat of fusion real(real64), private :: TtoK = 273.15d0 !! Conversion from Celsius to Kelvin real(real64), private :: g = 9.80665d0 !! Gravitational acceleration contains procedure(abst_gcc_calc), pass(self), deferred :: calc procedure(abst_gcc_calc_derivative), pass(self), deferred :: deriv procedure(abst_gcc_calc_derivative), pass(self), deferred :: deriv2 end type abst_gcc