eos_water Derived Type

type, private :: eos_water

液体状态方程


Contents

Source Code


Components

Type Visibility Attributes Name Initial
procedure(p_water_fcn), public, pointer, nopass :: p_water

Type-Bound Procedures

procedure, public, :: init

  • private subroutine init(self)

    初始化

    Arguments

    Type IntentOptional Attributes Name
    class(eos_water), intent(inout) :: self

Source Code

    type eos_water
        procedure(p_water_fcn), pointer, nopass :: p_water
    contains
        procedure :: init
    end type eos_water