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
12 changes: 10 additions & 2 deletions dc_stats.php
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,12 @@ function uselessie(){
<div>',sprintf("%s",number_format($dc->MaxkW)),' kW</div>
</div>
<div>
<div>',__("BTU Computation from Computed Watts"),'</div>
<div>',sprintf("%s",number_format(($dcStats["ComputedWatts"]*3.412)/1000)),' kBTU</div>
<div>',__("BTU/h from Computed Watts"),'</div>
<div>',sprintf("%s",number_format(($dcStats["ComputedWatts"]*3.412)/1000)),' kBTU/h</div>
</div>
<div>
<div>',__("BTU/h from Measured Watts"),'</div>
<div>',sprintf("%s",number_format(($dcStats["MeasuredWatts"]*3.412)/1000)),' kBTU/h</div>
</div>
<div>
<div>',__("Data Center Size"),'</div>
Expand All @@ -264,6 +268,10 @@ function uselessie(){
<div>',__("Minimum Cooling Tonnage (Based on Computed Watts)"),'</div>
<div>',sprintf("%s ".__("Tons"), number_format($dcStats["ComputedWatts"]*3.412*1.15/12000)),'</div>
</div>
<div>
<div>',__("Minimum Cooling Tonnage (Based on Measured Watts)"),'</div>
<div>',sprintf("%s ".__("Tons"), number_format($dcStats["MeasuredWatts"]*3.412*1.15/12000)),'</div>
</div>
<div>
<div>',__("Average Temperature"),'</div>
<div>',sprintf("%s %s",number_format($dcStats["AvgTemp"]), __("°". $tempUnits)),'</div>
Expand Down