Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
SUBROUTINE GetZoneEquipment
! SUBROUTINE INFORMATION:
! AUTHOR Russ Taylor
! DATE WRITTEN June 1997
! MODIFIED Aug 2003, FCW: set ZoneEquipConfig number for each zone
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! Get all the system related equipment which may be attached to
! a zone
! METHODOLOGY EMPLOYED:
! na
! REFERENCES:
! na
! USE STATEMENTS:
! na
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
! na
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
INTEGER :: Counter
INTEGER :: MaxNumOfEquipTypes
IF (.not. ZoneEquipInputsFilled) THEN
CALL GetZoneEquipmentData
END IF
NumOfTimeStepInDay = NumOfTimeStepInHour * 24
MaxNumOfEquipTypes=0
DO Counter=1,NumOfZones
IF (.not. ZoneEquipConfig(Counter)%IsControlled) CYCLE
MaxNumOfEquipTypes=MAX(MaxNumOfEquipTypes,ZoneEquipList(Counter)%NumOfEquipTypes)
ENDDO
ALLOCATE(PrioritySimOrder(MaxNumOfEquipTypes))
ALLOCATE(DefaultSimOrder(MaxNumOfEquipTypes))
DO Counter=1,MaxNumOfEquipTypes
DefaultSimOrder(Counter)=Counter
ENDDO
RETURN
END SUBROUTINE GetZoneEquipment