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.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer | :: | BaseboardNum |
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 UpdateBaseboard(BaseboardNum)
! SUBROUTINE INFORMATION:
! AUTHOR Russ Taylor
! DATE WRITTEN Nov 1997
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE: This subroutine
! METHODOLOGY EMPLOYED:
! na
! REFERENCES:
! na
! USE STATEMENTS:
USE DataLoopNode, ONLY: Node
USE PlantUtilities, ONLY: SafeCopyPlantNode
IMPLICIT NONE
! SUBROUTINE ARGUMENT DEFINITIONS:
INTEGER :: BaseboardNum
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
INTEGER :: WaterInletNode
INTEGER :: WaterOutletNode
WaterInletNode = Baseboard(BaseboardNum)%WaterInletNode
WaterOutletNode = Baseboard(BaseboardNum)%WaterOutletNode
Call SafeCopyPlantNode(WaterInletNode, WaterOutletNode)
! Set the outlet air nodes of the Baseboard
! Set the outlet water nodes for the Coil
! Node(WaterOutletNode)%MassFlowRate = Baseboard(BaseboardNum)%WaterMassFlowRate
Node(WaterOutletNode)%Temp = Baseboard(BaseboardNum)%WaterOutletTemp
Node(WaterOutletNode)%Enthalpy = Baseboard(BaseboardNum)%WaterOutletEnthalpy
! Set the outlet nodes for properties that just pass through & not used
! Set the outlet nodes for properties that just pass through & not used
! Node(WaterOutletNode)%Quality = Node(WaterInletNode)%Quality
! Node(WaterOutletNode)%Press = Node(WaterInletNode)%Press
! Node(WaterOutletNode)%HumRat = Node(WaterInletNode)%HumRat
! Node(WaterOutletNode)%MassFlowRateMin = Node(WaterInletNode)%MassFlowRateMin
! Node(WaterOutletNode)%MassFlowRateMax = Node(WaterInletNode)%MassFlowRateMax
! Node(WaterOutletNode)%MassFlowRateMinAvail= Node(WaterInletNode)%MassFlowRateMinAvail
! Node(WaterOutletNode)%MassFlowRateMaxAvail= Node(WaterInletNode)%MassFlowRateMaxAvail
RETURN
END SUBROUTINE UpdateBaseboard