type_state Derived Type

type, public :: type_state


Components

Type Visibility Attributes Name Initial
real(kind=real64), public :: dQw_dT

dQw/dT

real(kind=real64), public :: density_ice

\rho_i

real(kind=real64), public :: density_water

\rho_w

real(kind=real64), public :: dot_ice

\dot{\theta_i}

real(kind=real64), public :: ice_content

\theta_i

real(kind=real64), public :: latent_heat

L_f

real(kind=real64), public :: porosity

\phi

real(kind=real64), public :: pressure

P

real(kind=real64), public :: temperature

T

real(kind=real64), public :: vhc_water

C_w

real(kind=real64), public :: water_content

\theta_w


Source Code

    type :: type_state
        real(real64) :: temperature !! T
        real(real64) :: pressure !! P
        real(real64) :: water_content !! \theta_w
        real(real64) :: ice_content !! \theta_i
        real(real64) :: dot_ice !! \dot{\theta_i}
        real(real64) :: porosity !! \phi
        real(real64) :: latent_heat !! L_f
        real(real64) :: dQw_dT !! dQw/dT
        real(real64) :: density_water !! \rho_w
        real(real64) :: density_ice !! \rho_i
        real(real64) :: vhc_water !! C_w
    end type type_state