File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
deploy/runtime/macros/Flat Plate PV Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -758,7 +758,7 @@ i = 0;
758
758
for (gcr = min_gcr ; gcr <= max_gcr ; gcr = gcr + gcr_steps) {
759
759
j = -1;
760
760
str += '<tr>';
761
- str += '<th>GCR: ' + gcr + '</th>';
761
+ str += '<th>GCR: ' + num_to_str( gcr , 3 ) + '</th>';
762
762
for (tilt = min_tilt ; tilt <= max_tilt ; tilt = tilt + tilt_steps) {
763
763
j = j + 1;
764
764
if (annual_energy[i][j] == max_energy) str += '<td bgcolor = #00ff00>';
@@ -815,7 +815,7 @@ i = 0;
815
815
for (gcr = min_gcr ; gcr <= max_gcr ; gcr = gcr + gcr_steps) {
816
816
j = -1;
817
817
str += '<tr>';
818
- str += '<th>GCR: ' + gcr + '</th>';
818
+ str += '<th>GCR: ' + num_to_str( gcr , 3) + '</th>';
819
819
for (tilt = min_tilt ; tilt <= max_tilt ; tilt = tilt + tilt_steps) {
820
820
j = j + 1;
821
821
if (npv[i][j] == max_npv) str += '<td bgcolor = #00ff00>';
@@ -870,7 +870,7 @@ i = 0;
870
870
for (gcr = min_gcr ; gcr <= max_gcr ; gcr = gcr + gcr_steps) {
871
871
j = -1;
872
872
str += '<tr>';
873
- str += '<th>GCR: ' + gcr + '</th>';
873
+ str += '<th>GCR: ' + num_to_str( gcr , 3) + '</th>';
874
874
for (tilt = min_tilt ; tilt <= max_tilt ; tilt = tilt + tilt_steps) {
875
875
j = j + 1;
876
876
if (yield[i][j] == max_yield) str += '<td bgcolor = #00ff00>';
You can’t perform that action at this time.
0 commit comments