Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/cetc/DHW_module.F
Original file line number Diff line number Diff line change
Expand Up @@ -1408,6 +1408,7 @@ SUBROUTINE DHW_CarryToNextStep()
c Update variables that relate to ESP-r data.
c Created by: Phylroy A. Lopez
c Initial Creation Date: March 23th 2001
c Edited by: AW, Nov 6, 2017
c Copyright 2000: NRCan Buildings Group

c----56--1---------2---------3---------4---------5---------6---------7---------8
Expand All @@ -1421,8 +1422,13 @@ SUBROUTINE DHW_Update()
#include "dhw_common.h"
#include "ground_temp_mains_common.h"

C TFA(MCOM), ! zone future temperatures
common/FVALA/TFA(MCOM),QFA(MCOM)
real tfa, qfa

C Note this should be changed to the zone temperature that the tank is in.
fRoomTemp = 20.0
C fRoomTemp = 20.0
fRoomTemp = tfa(iDHWZoneLocation)

RETURN

Expand Down