Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
Fix for ABOVE_NORMAL and NORMAL Rfloor value (#961)
Browse files Browse the repository at this point in the history
  • Loading branch information
aivanova5 authored Jul 28, 2021
1 parent 4b416f3 commit de1c0f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module/residential/house_e.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1174,15 +1174,15 @@ void house_e::set_thermal_integrity(){
case TI_NORMAL:
if(Rroof <= 0.0) Rroof = 30;
if(Rwall <= 0.0) Rwall = 11;
if(Rfloor <= 0.0) Rfloor = 19;
if(Rfloor <= 0.0) Rfloor = 11;
if(Rdoors <= 0.0) Rdoors = 3;
if(Rwindows <= 0.0) Rwindows = 1/0.6;
if(airchange_per_hour < 0.0) airchange_per_hour = 1.0;
break;
case TI_ABOVE_NORMAL:
if(Rroof <= 0.0) Rroof = 30;
if(Rwall <= 0.0) Rwall = 19;
if(Rfloor <= 0.0) Rfloor = 11;
if(Rfloor <= 0.0) Rfloor = 19;
if(Rdoors <= 0.0) Rdoors = 3;
if(Rwindows <= 0.0) Rwindows = 1/0.6;
if(airchange_per_hour < 0.0) airchange_per_hour = 1.0;
Expand Down

0 comments on commit de1c0f6

Please sign in to comment.