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, | intent(in) | :: | SysAvailNum | |||
integer, | intent(out) | :: | AvailStatus |
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 CalcLoTurnOffSysAvailMgr(SysAvailNum,AvailStatus)
! SUBROUTINE INFORMATION:
! AUTHOR Peter Graham Ellis
! DATE WRITTEN February 2004
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! Set AvailStatus indicator for a plant loop, primary air loop or ZoneHVAC component.
! METHODOLOGY EMPLOYED:
!
! USE STATEMENTS:
USE DataLoopNode, ONLY: Node
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
INTEGER, INTENT (IN) :: SysAvailNum ! Number of the current scheduled system availability manager
INTEGER, INTENT (OUT) :: AvailStatus ! System status indicator
! FLOW:
! If applicability schedule is off, then availability manager is inactive, return no action
IF (LoTurnOffSysAvailMgrData(SysAvailNum)%SchedPtr > 0) THEN
IF(GetCurrentScheduleValue(LoTurnOffSysAvailMgrData(SysAvailNum)%SchedPtr) <= 0.0d0) THEN
AvailStatus = NoAction
LoTurnOffSysAvailMgrData(SysAvailNum)%AvailStatus = AvailStatus
RETURN
END IF
END IF
! Availability manager is active, check temperature limit
IF (Node(LoTurnOffSysAvailMgrData(SysAvailNum)%Node)%Temp <= LoTurnOffSysAvailMgrData(SysAvailNum)%Temp) THEN
AvailStatus = ForceOff
ELSE
AvailStatus = NoAction
END IF
LoTurnOffSysAvailMgrData(SysAvailNum)%AvailStatus = AvailStatus
RETURN
END SUBROUTINE CalcLoTurnOffSysAvailMgr