名詞定義: 有效日照時數改為日均發電度數,KW改為 kW

This commit is contained in:
wanling040@gmail.com 2022-07-08 16:12:10 +08:00
parent 3db7f8647c
commit 003efa79f6
5 changed files with 36 additions and 36 deletions

View File

@ -122,23 +122,23 @@ namespace SolarPower.Controllers
analysisInverter.MultipleYaxes = new Dictionary<string, string>(){
{ "IrrDay", "累積日照量"},
{ "DCKW", "直流功率 (KW)"},
{ "ACKW", "輸出功率 (KW)"},
{ "DCKW", "直流功率 (kW)"},
{ "ACKW", "輸出功率 (kW)"},
{ "DC1V", "直流電壓1 (V)"},
{ "DC1A", "直流電流1 (A)"},
{ "DC1KW", "直流功率1 (KW)"},
{ "DC1KW", "直流功率1 (kW)"},
{ "DC2V", "直流電壓2 (V)"},
{ "DC2A", "直流電流2 (A)"},
{ "DC2KW", "直流功率2 (KW)"},
{ "DC2KW", "直流功率2 (kW)"},
{ "DC3V", "直流電壓3 (V)"},
{ "DC3A", "直流電流3 (A)"},
{ "DC3KW", "直流功率3 (KW)"},
{ "DC3KW", "直流功率3 (kW)"},
{ "DC4V", "直流電壓4 (V)"},
{ "DC4A", "直流電流4 (A)"},
{ "DC4KW", "直流功率4 (KW)"},
{ "DC4KW", "直流功率4 (kW)"},
{ "DC5V", "直流電壓5 (V)"},
{ "DC5A", "直流電流5 (A)"},
{ "DC5KW", "直流功率5 (KW)"},
{ "DC5KW", "直流功率5 (kW)"},
{ "AC1V", "交流電壓A (V)"},
{ "AC2V", "交流電壓B (V)"},
{ "AC3V", "交流電壓C (V)"},
@ -183,7 +183,7 @@ namespace SolarPower.Controllers
InverterHistoryInfo DCKW = new InverterHistoryInfo();
DCKW.Name = string.Format("{0}:{1}", item.First().INVERTERName, "直流功率 (KW)");
DCKW.Name = string.Format("{0}:{1}", item.First().INVERTERName, "直流功率 (kW)");
DCKW.YaxesKey = "DCKW";
DCKW.Values = new List<double>();
foreach (var history in temp_item)
@ -200,7 +200,7 @@ namespace SolarPower.Controllers
series.Add(DCKW);
InverterHistoryInfo ACKW = new InverterHistoryInfo();
ACKW.Name = string.Format("{0}:{1}", item.First().INVERTERName, "輸出功率 (KW)");
ACKW.Name = string.Format("{0}:{1}", item.First().INVERTERName, "輸出功率 (kW)");
ACKW.YaxesKey = "ACKW";
ACKW.Values = new List<double>();
foreach (var history in temp_item)
@ -251,7 +251,7 @@ namespace SolarPower.Controllers
series.Add(DC1A);
InverterHistoryInfo DC1KW = new InverterHistoryInfo();
DC1KW.Name = string.Format("{0}:{1}", item.First().INVERTERName, "直流功率1 (KW)");
DC1KW.Name = string.Format("{0}:{1}", item.First().INVERTERName, "直流功率1 (kW)");
DC1KW.YaxesKey = "DC1KW";
DC1KW.Values = new List<double>();
foreach (var history in temp_item)
@ -302,7 +302,7 @@ namespace SolarPower.Controllers
series.Add(DC2A);
InverterHistoryInfo DC2KW = new InverterHistoryInfo();
DC2KW.Name = string.Format("{0}:{1}", item.First().INVERTERName, "直流功率2 (KW)");
DC2KW.Name = string.Format("{0}:{1}", item.First().INVERTERName, "直流功率2 (kW)");
DC2KW.YaxesKey = "DC2KW";
DC2KW.Values = new List<double>();
foreach (var history in temp_item)
@ -353,7 +353,7 @@ namespace SolarPower.Controllers
series.Add(DC3A);
InverterHistoryInfo DC3KW = new InverterHistoryInfo();
DC3KW.Name = string.Format("{0}:{1}", item.First().INVERTERName, "直流功率3 (KW)");
DC3KW.Name = string.Format("{0}:{1}", item.First().INVERTERName, "直流功率3 (kW)");
DC3KW.YaxesKey = "DC3KW";
DC3KW.Values = new List<double>();
foreach (var history in temp_item)
@ -404,7 +404,7 @@ namespace SolarPower.Controllers
series.Add(DC4A);
InverterHistoryInfo DC4KW = new InverterHistoryInfo();
DC4KW.Name = string.Format("{0}:{1}", item.First().INVERTERName, "直流功率4 (KW)");
DC4KW.Name = string.Format("{0}:{1}", item.First().INVERTERName, "直流功率4 (kW)");
DC4KW.YaxesKey = "DC4KW";
DC4KW.Values = new List<double>();
foreach (var history in temp_item)
@ -455,7 +455,7 @@ namespace SolarPower.Controllers
series.Add(DC5A);
InverterHistoryInfo DC5KW = new InverterHistoryInfo();
DC5KW.Name = string.Format("{0}:{1}", item.First().INVERTERName, "直流功率5 (KW)");
DC5KW.Name = string.Format("{0}:{1}", item.First().INVERTERName, "直流功率5 (kW)");
DC5KW.YaxesKey = "DC5KW";
DC5KW.Values = new List<double>();
foreach (var history in temp_item)

View File

@ -158,23 +158,23 @@
var current_compare_col = [];
var Single_day_compare_col = [
{ key: "IrrDay", title: "累積日照量", default: true },
{ key: "DCKW", title: "直流功率 (KW)", default: false },
{ key: "ACKW", title: "輸出功率 (KW)", default: true },
{ key: "DCKW", title: "直流功率 (kW)", default: false },
{ key: "ACKW", title: "輸出功率 (kW)", default: true },
{ key: "DC1V", title: "直流電壓1 (V)", default: false },
{ key: "DC1A", title: "直流電流1 (A)", default: false },
{ key: "DC1KW", title: "直流功率1 (KW)", default: false },
{ key: "DC1KW", title: "直流功率1 (kW)", default: false },
{ key: "DC2V", title: "直流電壓2 (V)", default: false },
{ key: "DC2A", title: "直流電流2 (A)", default: false },
{ key: "DC2KW", title: "直流功率2 (KW)", default: false },
{ key: "DC2KW", title: "直流功率2 (kW)", default: false },
{ key: "DC3V", title: "直流電壓3 (V)", default: false },
{ key: "DC3A", title: "直流電流3 (A)", default: false },
{ key: "DC3KW", title: "直流功率3 (KW)", default: false },
{ key: "DC3KW", title: "直流功率3 (kW)", default: false },
{ key: "DC4V", title: "直流電壓4 (V)", default: false },
{ key: "DC4A", title: "直流電流4 (A)", default: false },
{ key: "DC4KW", title: "直流功率4 (KW)", default: false },
{ key: "DC4KW", title: "直流功率4 (kW)", default: false },
{ key: "DC5V", title: "直流電壓5 (V)", default: false },
{ key: "DC5A", title: "直流電流5 (A)", default: false },
{ key: "DC5KW", title: "直流功率5 (KW)", default: false },
{ key: "DC5KW", title: "直流功率5 (kW)", default: false },
{ key: "AC1V", title: "交流電壓A (V)", default: false },
{ key: "AC2V", title: "交流電壓B (V)", default: false },
{ key: "AC3V", title: "交流電壓C (V)", default: false },

View File

@ -236,11 +236,11 @@
<th class="bg-warning-100" colspan="3">預估值 CBA</th>
<th class="bg-info-100" colspan="2">監控系統</th>
<th class="bg-success-100" colspan="2">台電售電記錄</th>
<th class="bg-primary-50" colspan="5">均發電度數小計<br>(/kW)</th>
<th class="bg-primary-50" colspan="5">均發電度數小計<br>(/kW)</th>
</tr>
<tr>
<th style="width: 6.66%">建置容量(kW)</th>
<th style="width: 6.66%">發電度數(kW/日)</th>
<th style="width: 6.66%">日均發電度數(kW/日)</th>
<th style="width: 6.66%">售電單價(NT$/度)</th>
<th style="width: 6.66%">建置容量(kW)</th>
<th style="width: 6.66%">售電單價(NT$/度)</th>
@ -271,11 +271,11 @@
<th class="bg-info-100" style="width: 6.66%">總售電收入(NT$)</th>
<th class="bg-success-100" style="width: 6.66%">總發電量(度數)</th>
<th class="bg-success-100" style="width: 6.66%">總售電收入(NT$)</th>
<th class="bg-primary-50" style="width: 6.66%">CBA每KW平均發電度數</th>
<th class="bg-primary-50" style="width: 6.66%">監控系統每KW平均發電度數</th>
<th class="bg-primary-50" style="width: 6.66%">每KW平均發電度數比較(CBA vs 監控系統)</th>
<th class="bg-primary-50" style="width: 6.66%">實際售電收入每KW品駿發電度數</th>
<th class="bg-primary-50" style="width: 6.66%">每KW平均發電度數比較(CBA vs 實際售電收入)</th>
<th class="bg-primary-50" style="width: 6.66%">CBA每kW平均發電度數</th>
<th class="bg-primary-50" style="width: 6.66%">監控系統每kW平均發電度數</th>
<th class="bg-primary-50" style="width: 6.66%">每kW平均發電度數比較(CBA vs 監控系統)</th>
<th class="bg-primary-50" style="width: 6.66%">實際售電收入每kW日均發電度數</th>
<th class="bg-primary-50" style="width: 6.66%">每kW平均發電度數比較(CBA vs 實際售電收入)</th>
</tr>
</thead>
<tbody id="asbody">

View File

@ -84,7 +84,7 @@
<tr>
<th>時間</th>
<th>發電量(kWh)</th>
<th>有效發電小時</th>
<th>日均發電度數</th>
<th>累積日照量(W/m2)</th>
@*<th>日照量(W/m2)</th>*@
<th>PR(%)</th>

View File

@ -267,7 +267,7 @@
<tr>
<th>縣市</th>
<th>平均發電量(kWp)</th>
<th>有效發電小時</th>
<th>日均發電度數</th>
</tr>
</thead>
<tbody id="maxtableBody">
@ -787,7 +787,7 @@
str += "<th>日<br />發電量<br />(kWh)</th>";
str += "<th>日<br />發電量<br />百分比<br />(%)</th>";
str += "<th>日照小時(hr)</th>";
str += "<th>有效發電小時</th>";
str += "<th>日均發電度數</th>";
str += "<th>PR%</th>";
str += "<th>累積日照量(W/㎡)</th>";
str += "<th>日<br />平均<br />模組溫度<br />(°C)</th>";
@ -799,7 +799,7 @@
str += "<th>區域</th>";
str += "<th>電站名稱</th>";
str += "<th>發電量</th>";
str += "<th>有效發電小時</th>";
str += "<th>日均發電度數</th>";
str += "<th>平均日照</th>";
str += "<th>PR</th>";
if (rel.data.showMoney == 1) {
@ -817,7 +817,7 @@
str += "<th>月<br />發電量<br />(kWh)</th>";
str += "<th>月<br />發電量<br />百分比<br />(%)</th>";
str += "<th>日照小時(hr)</th>";
str += "<th>有效發電小時</th>";
str += "<th>日均發電度數</th>";
str += "<th>PR%</th>";
str += "<th>月<br />平均<br />日照度<br />(W/㎡)</th>";
str += "<th>月<br />平均<br />模組溫度<br />(°C)</th>";
@ -951,7 +951,7 @@
})
var stc = "<tr>";
/* stc += "<th>" + '日照小時' + "</th>";*/
stc += "<th>" + '有效發電小時' + "</th>";
stc += "<th>" + '日均發電度數' + "</th>";
stc += "<th>" + 'PR%' + "</th>";
stc += "<th>" + '日發電量(kWh)' + "</th>";
stc += "<th>" + '裝置容量' + "</th>";
@ -1032,7 +1032,7 @@
var stc = "<tr>";
/*stc += "<th>" + '日照平均(日)' + "</th>";*/
stc += "<th>" + '有效發電小時(日)' + "</th>";
stc += "<th>" + '日均發電度數(日)' + "</th>";
stc += "<th>" + '發電量平均(kWh)(日)' + "</th>";
stc += "<th>" + '發電量(kWh)(月)' + "</th>";
stc += "<th>" + '裝置容量' + "</th>";
@ -1158,7 +1158,7 @@
var stc = "<tr>";
stc += "<th>" + '日照平均(月)' + "</th>";
stc += "<th>" + '有效發電小時(月)' + "</th>";
stc += "<th>" + '日均發電度數(月)' + "</th>";
stc += "<th>" + '發電量平均(kWh)(月)' + "</th>";
stc += "<th>" + '發電量(kWh)(年)' + "</th>";
if (showmoney == 1) {