Nodes of different colours represent the following:
Solid arrows point from a parent (sub)module to the submodule which is descended from it. Dashed arrows point from a module being used to the module or program unit using it. 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.
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 UpdateZoneListAndGroupLoads
! SUBROUTINE INFORMATION:
! AUTHOR Apparently someone who doesn't believe in documenting.
! DATE WRITTEN ???
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! Don't know.
! METHODOLOGY EMPLOYED:
! na
! REFERENCES:
! na
! USE STATEMENTS:
USE DataHeatBalance
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 :: ZoneNum, ListNum, GroupNum, Mult
! FLOW:
! Sum ZONE LIST and ZONE GROUP report variables
ListSNLoadHeatEnergy = 0.0d0
ListSNLoadCoolEnergy = 0.0d0
ListSNLoadHeatRate = 0.0d0
ListSNLoadCoolRate = 0.0d0
DO ListNum = 1, NumOfZoneLists
DO ZoneNum = 1, ZoneList(ListNum)%NumOfZones
Mult = Zone(ZoneNum)%Multiplier
ListSNLoadHeatEnergy(ListNum) = ListSNLoadHeatEnergy(ListNum) + SNLoadHeatEnergy(ZoneList(ListNum)%Zone(ZoneNum)) * Mult
ListSNLoadCoolEnergy(ListNum) = ListSNLoadCoolEnergy(ListNum) + SNLoadCoolEnergy(ZoneList(ListNum)%Zone(ZoneNum)) * Mult
ListSNLoadHeatRate(ListNum) = ListSNLoadHeatRate(ListNum) + SNLoadHeatRate(ZoneList(ListNum)%Zone(ZoneNum)) * Mult
ListSNLoadCoolRate(ListNum) = ListSNLoadCoolRate(ListNum) + SNLoadCoolRate(ZoneList(ListNum)%Zone(ZoneNum)) * Mult
END DO ! ZoneNum
END DO ! ListNum
DO GroupNum = 1, NumOfZoneGroups
Mult = ZoneGroup(GroupNum)%Multiplier
GroupSNLoadHeatEnergy(GroupNum) = ListSNLoadHeatEnergy(ZoneGroup(GroupNum)%ZoneList) * Mult
GroupSNLoadCoolEnergy(GroupNum) = ListSNLoadCoolEnergy(ZoneGroup(GroupNum)%ZoneList) * Mult
GroupSNLoadHeatRate(GroupNum) = ListSNLoadHeatRate(ZoneGroup(GroupNum)%ZoneList) * Mult
GroupSNLoadCoolRate(GroupNum) = ListSNLoadCoolRate(ZoneGroup(GroupNum)%ZoneList) * Mult
END DO ! GroupNum
RETURN
END SUBROUTINE UpdateZoneListAndGroupLoads