SSsrcLink_t Derived Type

type, public :: SSsrcLink_t


Inherits

type~~sssrclink_t~~InheritsGraph type~sssrclink_t SSsrcLink_t type~material_t material_t type~sssrclink_t->type~material_t mat_ins type~ss_src_port_pointer_t SS_src_port_pointer_t type~sssrclink_t->type~ss_src_port_pointer_t lk c_ptr c_ptr type~material_t->c_ptr res_cfg, th_cond_cfg, stra_cfg, t_crit_cfg, bc_cfg, jc_cfg, tcs_cfg, heat_cap_cfg type~ss_src_port_t SS_src_port_t type~ss_src_port_pointer_t->type~ss_src_port_t p type~port_t port_t type~ss_src_port_t->type~port_t

Components

Type Visibility Attributes Name Initial
integer, public :: sizeNodes
type(SS_src_port_pointer_t), public, allocatable :: lk(:,:)
class(material_t), public, pointer :: mat_ins
integer, public, allocatable :: nb_2D_Ports(:)
real(kind=dp), public, allocatable :: SurfCont(:)
real(kind=dp), public, allocatable :: Lins(:)
real(kind=dp), public, allocatable :: Lk12(:)
real(kind=dp), public, allocatable :: Lk21(:)
real(kind=dp), public, allocatable :: DerSrcS1dT2(:)
real(kind=dp), public, allocatable :: DerSrcS2dT1(:)
real(kind=dp), public, allocatable :: LkArr(:,:,:)
real(kind=dp), public, allocatable :: Der4LkArr(:,:,:)

Source Code

    type SSsrcLink_t   
        integer :: sizeNodes 
        type(SS_src_port_pointer_t), allocatable :: lk(:,:)
        class(material_t), pointer :: mat_ins

        integer, allocatable  :: nb_2D_Ports(:)

        real(dp), allocatable :: SurfCont(:), Lins(:), Lk12(:), Lk21(:),  DerSrcS1dT2(:), DerSrcS2dT1(:)
        real(dp), allocatable :: LkArr(:,:,:)
        real(dp), allocatable :: Der4LkArr(:,:,:)
    end type SSsrcLink_t