type_materials_thermal Derived Type

type, public :: type_materials_thermal


Inherits

type~~type_materials_thermal~~InheritsGraph type~type_materials_thermal type_materials_thermal type~type_materials_phase_change type_materials_phase_change type~type_materials_thermal->type~type_materials_phase_change phase_change type~type_materials_gcc type_materials_gcc type~type_materials_phase_change->type~type_materials_gcc gcc type~type_materials_wrf type_materials_wrf type~type_materials_phase_change->type~type_materials_wrf wrf

Inherited by

type~~type_materials_thermal~~InheritedByGraph type~type_materials_thermal type_materials_thermal type~type_material_settings type_material_settings type~type_material_settings->type~type_materials_thermal thermal type~input_basic input_basic type~input_basic->type~type_material_settings materials type~type_input type_input type~type_input->type~input_basic basic

Components

Type Visibility Attributes Name Initial
real(kind=real64), public, allocatable :: density(:)
type(type_materials_phase_change), public :: phase_change
real(kind=real64), public, allocatable :: specific_heat(:)
real(kind=real64), public, allocatable :: thermal_conductivity(:)
real(kind=real64), public, allocatable :: thermal_conductivity_dispersity(:)

Source Code

    type :: type_materials_thermal
        real(real64), allocatable :: density(:)
        real(real64), allocatable :: specific_heat(:)
        real(real64), allocatable :: thermal_conductivity(:)
        real(real64), allocatable :: thermal_conductivity_dispersity(:)
        type(type_materials_phase_change) :: phase_change
    end type type_materials_thermal