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 InitializePredefinedMonthlyTitles
! SUBROUTINE INFORMATION:
! AUTHOR Jason Glazer
! DATE WRITTEN September 2008
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! Initialize the NamedMonthly array for the titles
! of the monthly predefined reports
! METHODOLOGY EMPLOYED:
!
! REFERENCES:
! na
! USE STATEMENTS:
USE DataOutputs
USE General, ONLY: RoundSigDigits
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 :: xcount
ALLOCATE(namedMonthly(numNamedMonthly))
namedMonthly(1)%title = 'ZoneCoolingSummaryMonthly'
namedMonthly(2)%title = 'ZoneHeatingSummaryMonthly'
namedMonthly(3)%title = 'ZoneElectricSummaryMonthly'
namedMonthly(4)%title = 'SpaceGainsMonthly'
namedMonthly(5)%title = 'PeakSpaceGainsMonthly'
namedMonthly(6)%title = 'SpaceGainComponentsAtCoolingPeakMonthly'
namedMonthly(7)%title = 'EnergyConsumptionElectricityNaturalGasMonthly'
namedMonthly(8)%title = 'EnergyConsumptionElectricityGeneratedPropaneMonthly'
namedMonthly(9)%title = 'EnergyConsumptionDieselFuelOilMonthly'
namedMonthly(10)%title = 'EnergyConsumptionDistrictHeatingCoolingMonthly'
namedMonthly(11)%title = 'EnergyConsumptionCoalGasolineMonthly'
namedMonthly(12)%title = 'EnergyConsumptionOtherFuelsMonthly'
namedMonthly(13)%title = 'EndUseEnergyConsumptionElectricityMonthly'
namedMonthly(14)%title = 'EndUseEnergyConsumptionNaturalGasMonthly'
namedMonthly(15)%title = 'EndUseEnergyConsumptionDieselMonthly'
namedMonthly(16)%title = 'EndUseEnergyConsumptionFuelOilMonthly'
namedMonthly(17)%title = 'EndUseEnergyConsumptionCoalMonthly'
namedMonthly(18)%title = 'EndUseEnergyConsumptionPropaneMonthly'
namedMonthly(19)%title = 'EndUseEnergyConsumptionGasolineMonthly'
namedMonthly(20)%title = 'EndUseEnergyConsumptionOtherFuelsMonthly'
namedMonthly(21)%title = 'PeakEnergyEndUseElectricityPart1Monthly'
namedMonthly(22)%title = 'PeakEnergyEndUseElectricityPart2Monthly'
namedMonthly(23)%title = 'ElectricComponentsOfPeakDemandMonthly'
namedMonthly(24)%title = 'PeakEnergyEndUseNaturalGasMonthly'
namedMonthly(25)%title = 'PeakEnergyEndUseDieselMonthly'
namedMonthly(26)%title = 'PeakEnergyEndUseFuelOilMonthly'
namedMonthly(27)%title = 'PeakEnergyEndUseCoalMonthly'
namedMonthly(28)%title = 'PeakEnergyEndUsePropaneMonthly'
namedMonthly(29)%title = 'PeakEnergyEndUseGasolineMonthly'
namedMonthly(30)%title = 'PeakEnergyEndUseOtherFuelsMonthly'
namedMonthly(31)%title = 'SetpointsNotMetWithTemperaturesMonthly'
namedMonthly(32)%title = 'ComfortReportSimple55Monthly'
namedMonthly(33)%title = 'UnglazedTranspiredSolarCollectorSummaryMonthly'
namedMonthly(34)%title = 'OccupantComfortDataSummaryMonthly'
namedMonthly(35)%title = 'ChillerReportMonthly'
namedMonthly(36)%title = 'TowerReportMonthly'
namedMonthly(37)%title = 'BoilerReportMonthly'
namedMonthly(38)%title = 'DXReportMonthly'
namedMonthly(39)%title = 'WindowReportMonthly'
namedMonthly(40)%title = 'WindowEnergyReportMonthly'
namedMonthly(41)%title = 'WindowZoneSummaryMonthly'
namedMonthly(42)%title = 'WindowEnergyZoneSummaryMonthly'
namedMonthly(43)%title = 'AverageOutdoorConditionsMonthly'
namedMonthly(44)%title = 'OutdoorConditionsMaximumDryBulbMonthly'
namedMonthly(45)%title = 'OutdoorConditionsMinimumDryBulbMonthly'
namedMonthly(46)%title = 'OutdoorConditionsMaximumWetBulbMonthly'
namedMonthly(47)%title = 'OutdoorConditionsMaximumDewPointMonthly'
namedMonthly(48)%title = 'OutdoorGroundConditionsMonthly'
namedMonthly(49)%title = 'WindowACReportMonthly'
namedMonthly(50)%title = 'WaterHeaterReportMonthly'
namedMonthly(51)%title = 'GeneratorReportMonthly'
namedMonthly(52)%title = 'DaylightingReportMonthly'
namedMonthly(53)%title = 'CoilReportMonthly'
namedMonthly(54)%title = 'PlantLoopDemandReportMonthly'
namedMonthly(55)%title = 'FanReportMonthly'
namedMonthly(56)%title = 'PumpReportMonthly'
namedMonthly(57)%title = 'CondLoopDemandReportMonthly'
namedMonthly(58)%title = 'ZoneTemperatureOscillationReportMonthly'
namedMonthly(59)%title = 'AirLoopSystemEnergyAndWaterUseMonthly'
namedMonthly(60)%title = 'AirLoopSystemComponentLoadsMonthly'
namedMonthly(61)%title = 'AirLoopSystemComponentEnergyUseMonthly'
namedMonthly(62)%title = 'MechanicalVentilationLoadsMonthly'
IF (numNamedMonthly /= NumMonthlyReports) THEN
CALL ShowFatalError('InitializePredefinedMonthlyTitles: Number of Monthly Reports in OutputReportTabular=['// &
trim(RoundSigDigits(numNamedMonthly))//'] does not match number in DataOutputs=['// &
trim(RoundSigDigits(NumMonthlyReports))//'].')
ELSE
DO xcount=1,NumNamedMonthly
IF (.not. SameString(MonthlyNamedReports(xcount),namedMonthly(xcount)%title)) THEN
CALL ShowSevereError('InitializePredefinedMonthlyTitles: Monthly Report Titles in OutputReportTabular do not match'// &
' titles in DataOutput.')
CALL ShowContinueError('first mismatch at ORT ['//trim(RoundSigDigits(NumNamedMonthly))//'] ="'// &
trim(namedMonthly(xcount)%Title)//'".')
CALL ShowContinueError('same location in DO ="'//trim(MonthlyNamedReports(xcount))//'".')
CALL ShowFatalError('Preceding condition causes termination.')
ENDIF
ENDDO
ENDIF
END SUBROUTINE InitializePredefinedMonthlyTitles