FFsrcLink_t Derived Type

type, public :: FFsrcLink_t


Inherits

type~~ffsrclink_t~~InheritsGraph type~ffsrclink_t FFsrcLink_t type~dbl_pointer_t dbl_pointer_t type~ffsrclink_t->type~dbl_pointer_t MxUp, MxDown type~ff_src_port_pointer_t FF_src_port_pointer_t type~ffsrclink_t->type~ff_src_port_pointer_t lk type~nusselt_t nusselt_t type~ffsrclink_t->type~nusselt_t nuss type~ff_src_port_t FF_src_port_t type~ff_src_port_pointer_t->type~ff_src_port_t p c_ptr c_ptr type~nusselt_t->c_ptr nuss_cfg type~port_t port_t type~ff_src_port_t->type~port_t

Components

Type Visibility Attributes Name Initial
integer, public :: sizeNodes
type(FF_src_port_pointer_t), public, allocatable :: lk(:,:)
real(kind=dp), public :: WetPerChan
class(nusselt_t), public, pointer :: nuss

Nusselt correlation

real(kind=dp), public, allocatable :: DerSedOther(:,:,:)
real(kind=dp), public, allocatable :: DerSrdOther(:,:,:)
real(kind=dp), public, allocatable :: Matrix(:,:,:,:)
type(dbl_pointer_t), public, allocatable :: MxUp(:,:)
type(dbl_pointer_t), public, allocatable :: MxDown(:,:)

Source Code

    type FFsrcLink_t
        integer :: sizeNodes        
        type(FF_src_port_pointer_t), allocatable :: lk(:,:)

        real(dp) :: WetPerChan
        class(nusselt_t), pointer :: nuss       !! Nusselt correlation 

        real(dp), allocatable :: DerSedOther(:,:,:), DerSrdOther(:,:,:)

        real(dp), allocatable :: Matrix(:,:,:,:)
        type(dbl_pointer_t), allocatable :: MxUp(:,:), MxDown(:,:)
    end type FFsrcLink_t