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) | :: | RadSysNum |
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 ReportHighTempRadiantSystem(RadSysNum)
! SUBROUTINE INFORMATION:
! AUTHOR Rick Strand
! DATE WRITTEN February 2001
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! This subroutine simply produces output for the high temperature radiant system.
! METHODOLOGY EMPLOYED:
! Standard EnergyPlus methodology.
! REFERENCES:
! na
! USE STATEMENTS:
USE DataGlobals, ONLY : SecInHour,outputfiledebug
USE DataHVACGlobals, ONLY : TimeStepSys
USE DataLoopNode, ONLY : Node
USE DataSurfaces, ONLY : Surface
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
INTEGER, INTENT(IN) :: RadSysNum ! Index for the low temperature radiant system under consideration within the derived types
! SUBROUTINE PARAMETER DEFINITIONS:
REAL(r64), PARAMETER :: NotOperating = -9999.d0 ! Some unreasonable value that should clue the user in that this is not running
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
! na
! FLOW:
IF (HighTempRadSys(RadSysNum)%HeaterType == Gas) THEN
HighTempRadSys(RadSysNum)%GasPower = QHTRadSource(RadSysNum)/HighTempRadSys(RadSysNum)%CombustionEffic
HighTempRadSys(RadSysNum)%GasEnergy = HighTempRadSys(RadSysNum)%GasPower*TimeStepSys*SecInHour
HighTempRadSys(RadSysNum)%ElecPower = 0.0d0
HighTempRadSys(RadSysNum)%ElecEnergy = 0.0d0
ELSE IF (HighTempRadSys(RadSysNum)%HeaterType == Electric) THEN
HighTempRadSys(RadSysNum)%GasPower = 0.0d0
HighTempRadSys(RadSysNum)%GasEnergy = 0.0d0
HighTempRadSys(RadSysNum)%ElecPower = QHTRadSource(RadSysNum)
HighTempRadSys(RadSysNum)%ElecEnergy = HighTempRadSys(RadSysNum)%ElecPower*TimeStepSys*SecInHour
ELSE
CALL ShowWarningError('Someone forgot to add a high temperature radiant heater type to the reporting subroutine')
END IF
HighTempRadSys(RadSysNum)%HeatPower = QHTRadSource(RadSysNum)
HighTempRadSys(RadSysNum)%HeatEnergy = HighTempRadSys(RadSysNum)%HeatPower*TimeStepSys*SecInHour
RETURN
END SUBROUTINE ReportHighTempRadiantSystem