type_gauss_point_state Derived Type

type, public :: type_gauss_point_state


Components

Type Visibility Attributes Name Initial
real(kind=real64), public :: porosity
real(kind=real64), public :: pressure
real(kind=real64), public :: temperature
real(kind=real64), public :: water_content

Source Code

    type :: type_gauss_point_state
        real(real64) :: temperature
        real(real64) :: pressure
        real(real64) :: water_content
        real(real64) :: porosity
        ! ... 必要に応じて他の状態変数を追加 ...
    end type type_gauss_point_state