Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r64), | intent(inout) | :: | efficiencyDistrictHeating | |||
real(kind=r64), | intent(inout) | :: | efficiencyDistrictCooling | |||
real(kind=r64), | intent(inout) | :: | sourceFactorSteam |
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 GetEnvironmentalImpactFactorInfo(efficiencyDistrictHeating,efficiencyDistrictCooling,sourceFactorSteam)
! SUBROUTINE INFORMATION:
! AUTHOR Linda Lawrie
! DATE WRITTEN August 2008
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! This routine allows access to data inside this module from other modules (specifically the
! output tabular reports.
! METHODOLOGY EMPLOYED:
! na
! REFERENCES:
! na
! USE STATEMENTS:
! na
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
! Each of the arguments must be entered in the EnvironmentalImpactFactors object
REAL(r64), INTENT(INOUT) :: efficiencyDistrictHeating ! if entered, the efficiency of District Heating
REAL(r64), INTENT(INOUT) :: efficiencyDistrictCooling ! if entered, the efficiency of District Cooling
REAL(r64), INTENT(INOUT) :: sourceFactorSteam ! if entered, the source factor for Steam
IF (GetInputFlagPollution) THEN
CALL GetPollutionFactorInput
GetInputFlagPollution=.false.
ENDIF
IF (NumEnvImpactFactors > 0) THEN
efficiencyDistrictHeating = Pollution%PurchHeatEffic
efficiencyDistrictCooling = Pollution%PurchCoolCOP
sourceFactorSteam = Pollution%SteamConvEffic
ENDIF
RETURN
END SUBROUTINE GetEnvironmentalImpactFactorInfo