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 | = | ' ' | ||
integer, | public | :: | ErlSimProgramMngr | = | 0 | ||
integer, | public | :: | ErlInitProgramMngr | = | 0 | ||
integer, | public | :: | NumAirConnections | = | 0 | ||
logical, | public | :: | PlantIsConnected | = | .FALSE. | ||
type(AirConnectionStruct), | public, | DIMENSION(:), ALLOCATABLE | :: | Air | |||
type(PlantConnectionStruct), | public | :: | Loop | ||||
type(WaterUseTankConnectionStruct), | public | :: | Water | ||||
type(ZoneInternalGainsStruct), | public | :: | Zone |
TYPE UserCoilComponentStruct
CHARACTER(len=MaxNameLength) :: Name =' ' ! user identifier
INTEGER :: ErlSimProgramMngr = 0 ! EMS:ProgramManager to always run when this model is called
INTEGER :: ErlInitProgramMngr= 0 ! EMS:ProgramManager to run when this model is initialized and setup
INTEGER :: NumAirConnections = 0 ! count of how many air connectiosn there are
LOGICAL :: PlantIsConnected = .FALSE.
TYPE(AirConnectionStruct), DIMENSION(:), ALLOCATABLE :: Air
TYPE(PlantConnectionStruct) :: Loop
TYPE(WaterUseTankConnectionStruct) :: Water
TYPE(ZoneInternalGainsStruct) :: Zone
END TYPE UserCoilComponentStruct