Nodes of different colours represent the following:
Solid arrows point from one derived type to another which extends (inherits from) it. Dashed arrows point from a derived type to another type containing it as a components, with a label listing the name(s) of said component(s). Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
character(len=MaxNameLength), | public | :: | Name | = | ' ' | ||
character(len=MaxNameLength), | public, | ALLOCATABLE, DIMENSION(:) | :: | CircuitNames | |||
integer, | public, | ALLOCATABLE, DIMENSION(:) | :: | CircuitIndeces | |||
logical, | public | :: | OneTimeInit | = | .TRUE. | ||
logical, | public | :: | BeginSimInit | = | .TRUE. | ||
logical, | public | :: | BeginSimEnvrn | = | .TRUE. | ||
logical, | public | :: | DomainNeedsSimulation | = | .TRUE. | ||
logical, | public | :: | DomainNeedsToBeMeshed | = | .TRUE. | ||
logical, | public | :: | IsActuallyPartOfAHorizontalTrench | = | .FALSE. | ||
type(MeshExtents), | public | :: | Extents | ||||
type(MeshProperties), | public | :: | Mesh | ||||
type(BaseThermalPropertySet), | public | :: | GroundProperties | ||||
type(SimulationControl), | public | :: | SimControls | ||||
type(FarfieldInfo), | public | :: | Farfield | ||||
type(BasementZoneInfo), | public | :: | BasementZone | ||||
type(MoistureInfo), | public | :: | Moisture | ||||
type(MeshPartitions), | public | :: | Partitions | ||||
type(CurSimConditionsInfo), | public | :: | Cur | ||||
type(ReportingInformation), | public | :: | Reporting | ||||
logical, | public | :: | HasBasement | = | .false. | ||
type(CartesianCell), | public, | ALLOCATABLE, DIMENSION(:,:,:) | :: | Cells |
TYPE FullDomainStructureInfo
! ID
CHARACTER(LEN=MaxNameLength) :: Name=' '
! Names and pointers to circuits found in this domain
CHARACTER(LEN=MaxNameLength), ALLOCATABLE, DIMENSION(:) :: CircuitNames
INTEGER, ALLOCATABLE, DIMENSION(:) :: CircuitIndeces
! Flag variables
LOGICAL :: OneTimeInit = .TRUE.
LOGICAL :: BeginSimInit = .TRUE.
LOGICAL :: BeginSimEnvrn = .TRUE.
LOGICAL :: DomainNeedsSimulation = .TRUE.
LOGICAL :: DomainNeedsToBeMeshed = .TRUE.
LOGICAL :: IsActuallyPartOfAHorizontalTrench = .FALSE.
! "Input" data structure variables
TYPE(MeshExtents) :: Extents
TYPE(MeshProperties) :: Mesh
TYPE(BaseThermalPropertySet) :: GroundProperties
TYPE(SimulationControl) :: SimControls
TYPE(FarfieldInfo) :: Farfield
TYPE(BasementZoneInfo) :: BasementZone
TYPE(MoistureInfo) :: Moisture
! "Internal" data structure variables
TYPE(MeshPartitions) :: Partitions
TYPE(CurSimConditionsInfo) :: Cur
TYPE(ReportingInformation) :: Reporting
LOGICAL :: HasBasement=.false.
! Main 3D cells array
TYPE(CartesianCell), ALLOCATABLE, DIMENSION(:,:,:) :: Cells
END TYPE FullDomainStructureInfo