| 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 | |||
| type(type_state), | intent(in) | :: | state |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(abst_gcc), | intent(in) | :: | self | |||
| type(type_state), | intent(in) | :: | state |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(abst_gcc), | intent(in) | :: | self | |||
| type(type_state), | intent(in) | :: | state |
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), pass(self), deferred :: deriv procedure(abst_gcc_calc), pass(self), deferred :: deriv2 end type abst_gcc