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

Rfloor value fix #961

Merged
merged 1 commit into from
Jul 28, 2021
Merged
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
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