You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Boilers are named first here based on number, then here based on size and efficiency.
The code in Part 1 yields repeated numbering: HOT WATER LOOP BOILER 1 OF 2 HOT WATER LOOP BOILER 1 OF 2 2 OF 2
The logic could probably be simplified, since there will only ever be one or two boilers.
The code in Part 2 appends the combined boiler capacity to each boiler: HOT WATER LOOP BOILER 1 OF 2 2063KBTU/HR 0.8 THERMAL EFF HOT WATER LOOP BOILER 1 OF 2 2 OF 2 2063KBTU/HR 0.8 THERMAL EFF
Here capacity_kbtu_per_hr should be multiplied by boiler sizing_factor.
The text was updated successfully, but these errors were encountered:
- Fix#230
- Update to PRM method to have better naming for boilers
- Re-apply efficiency standard because multiple boilers with lower capacity may have different efficiency standards at the smaller size
Boilers are named first here based on number, then here based on size and efficiency.
The code in Part 1 yields repeated numbering:
HOT WATER LOOP BOILER 1 OF 2
HOT WATER LOOP BOILER 1 OF 2 2 OF 2
The logic could probably be simplified, since there will only ever be one or two boilers.
The code in Part 2 appends the combined boiler capacity to each boiler:
HOT WATER LOOP BOILER 1 OF 2 2063KBTU/HR 0.8 THERMAL EFF
HOT WATER LOOP BOILER 1 OF 2 2 OF 2 2063KBTU/HR 0.8 THERMAL EFF
Here
capacity_kbtu_per_hr
should be multiplied by boilersizing_factor
.The text was updated successfully, but these errors were encountered: