type_phase_property Derived Type

type, public :: type_phase_property


Components

Type Visibility Attributes Name Initial
real(kind=real64), public :: gas
real(kind=real64), public :: ice
real(kind=real64), public :: solid
real(kind=real64), public :: water

Source Code

    type :: type_phase_property
        real(real64) :: solid
        real(real64) :: water
        real(real64) :: ice
        real(real64) :: gas
    end type type_phase_property