Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
real(kind=real64), | public | :: | material1 |
soil, rock, concrete |
|||
real(kind=real64), | public | :: | material2 |
water |
|||
real(kind=real64), | public | :: | material3 |
ice |
|||
real(kind=real64), | public | :: | material4 |
gas |
|||
integer(kind=int32), | public | :: | material_id |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(abst_vhc), | intent(in) | :: | self | |||
type(type_gauss_point_state), | intent(in) | :: | state | |||
type(holder_dens), | intent(in), | optional | :: | DEN | ||
real(kind=real64), | intent(in), | optional | :: | LatentHeat | ||
real(kind=real64), | intent(in), | optional | :: | dQi_dT |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(abst_vhc), | intent(in) | :: | self | |||
type(type_gauss_point_state), | intent(in) | :: | state | |||
class(abst_den), | intent(in), | optional, | pointer | :: | DEN | |
real(kind=real64), | intent(in), | optional | :: | LatentHeat | ||
real(kind=real64), | intent(in), | optional | :: | dQi_dT |
type, abstract :: abst_vhc integer(int32) :: material_id real(real64) :: material1 !! soil, rock, concrete real(real64) :: material2 !! water real(real64) :: material3 !! ice real(real64) :: material4 !! gas contains procedure(abst_calc_vhc_gauss_point_holder), pass(self), deferred :: calc_gauss_point_holder procedure(abst_calc_vhc_gauss_point_ptr), pass(self), deferred :: calc_gauss_point_ptr end type abst_vhc