-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathausw.js
353 lines (281 loc) · 11.6 KB
/
ausw.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
function ausw(){
// 1 )Stammdaten werden erfasst; Listen werden generiert
// Detailbericht
let Bericht = ""
// Listen
const inhomogeneParameterListe = [];
// Stammdaten
const Abfallbezeichnung = document.getElementById("Abfallbezeichnung").value;
const Abfallmenge = document.getElementById("Abfallmenge").value;
const Probenahme = document.getElementById("Probenahme").value;
const toc = document.getElementById("TOC").value;
const relevZW = document.getElementById("ZW").value;
// Bericht Überschriften, Stammdaten, Probenzahl
Bericht += (Abfallbezeichnung == "") ? "<h2>Detailbericht</h2>": `<h2>Detailbericht - ${Abfallbezeichnung}</h2>`;
Bericht += "<h3>Stammdaten</h3>"
Bericht += `<table style="color:white;">
<tr>
<th>Menge in m³</th>
<th>Nur natürliche Fremdbestandteile?</th>
<th>Einstufungsrelevante Zordnungswerte</th>
</tr>
<tr>
<td>${Abfallmenge}</td>
<td>${document.getElementById("TOC").options[toc].text}</td>
<td>${document.getElementById("ZW").options[document.getElementById("ZW").selectedIndex].text}</td>
</tr>
</table>`
if (Probenahme == 0 && Abfallmenge != ""){
Bericht += pn98(Abfallmenge)
}
else if (Probenahme == 1 && Abfallmenge != ""){
Bericht += din(Abfallmenge)
}
if (document.querySelectorAll('input[type="checkbox"]:checked').length > 0){
Bericht += "<h3>Einzelne Parameter im Überblick</h3>"
}
// Hidden stammdaten Tabelle für ZOW-Druck
document.getElementById("StammdatenHeadline").innerHTML = `<h1>ZOW-Tabelle nach den Vorgaben der Deponieverordnung (DepV)</h1>
<table class="BerichtTabelle">
<tr>
<th>Bezeichnung / Herkunft</th>
<th>Menge in m³</th>
<th>Einstufungsrelevante Zordnungswerte</th>
<th>Nur natürliche Fremdbestandteile?</th>
</tr>
<tr>
<td>${Abfallbezeichnung}</td>
<td>${Abfallmenge}</td>
<td>${document.getElementById("ZW").options[document.getElementById("ZW").selectedIndex].text}</td>
<td>${document.getElementById("TOC").options[toc].text}</td>
</tr>
</table><br>`
// 2) Die ZOW Tabelle in der GUI wird aktualisiert.
for (index in ParaList){
let CurrentParameter = ParaList[index];
let PaName = CurrentParameter.Name;
// Init Lists für den jeweiligen Parameter
let MWList = [];
let MWRoundedList = [];
let ErgList = [];
let ErgColorList = []
let MWNameList = [];
let GWList = [];
for (let n = 0; n < 12; n++){
let CurrentEntry = document.getElementById(`Inp${PaName}${n}`);
let CurrentMW = CurrentEntry.value;
let CurrentMWNameEntry = document.getElementById(`SampleName${n}`);
let CurrentMWName = (CurrentMWNameEntry.value == "")? `Eingabefeld ${n+1}` : CurrentMWNameEntry.value;
let CurrentErgLabel = document.getElementById(`Erg${PaName}${n}`);
CurrentErgLabel.style.backgroundColor = ""; // setzt bei leeren Feldern die Hintergrundfarbe
CurrentErgLabel.textContent = ""; // und den Textinhalt des Auswertungsfeldes zurück.
// Prüfung ob die Probe mit ausgewertet werden soll
let SampleNumerCheckbox = document.getElementById(`SampleNumber${n}`).checked
if ((CurrentMW != "") && (SampleNumerCheckbox)){
MWNameList.push(CurrentMWName);
MWList.push(CurrentMW);
let CurrentRoundedValue = CurrentMW % 1 === 0 ? CurrentMW : parseFloat(CurrentMW).toFixed(CurrentParameter.Rst);
MWRoundedList.push(CurrentRoundedValue);
let Ergebnis = CurrentParameter.auswertung(CurrentRoundedValue, toc);
//console.log(Ergebnis);
ErgList.push(Ergebnis);
// Grenzwert Liste akutalisieren
let CurrentGW = CurrentParameter.Gw[Ergebnis.split("DK")[1]]
// Sonderfall GV & TOC
if ((! (CurrentParameter instanceof DoubleParameter)) && CurrentGW.length > 1){
CurrentGW = CurrentGW[toc]}
// Sonderfall PH
if ((CurrentParameter instanceof DoubleParameter) && CurrentGW.length > 1){
CurrentGW = `${CurrentGW[0]} - ${CurrentGW[1]}`}
GWList.push(CurrentGW)
CurrentErgLabel.textContent = Ergebnis;
let CurrentColor = colordic[Ergebnis];
ErgColorList.push(CurrentColor)
// console.log("Aktuelle Farbe " + CurrentColor )
CurrentErgLabel.style.backgroundColor = CurrentColor;
}
}
// Homogenitäts Label updaten
if (! (CurrentParameter instanceof DoubleParameter)){
let homogenLabel = document.getElementById(`HomogenErgLabel${PaName}`);
homogenLabel.textContent = "";
homogenLabel.style.backgroundColor = "";
let zw = CurrentParameter.Gw[relevZW];
if ( ! (zw == undefined)){
// console.log(zw)
if (! (typeof(zw) == "number")){
if (zw.length == 2){
zw = zw[toc];
}
}
let homogenErg = homogen(MWList, zw);
// console.log(PaName + "\tGrnzwert\t" + zw )
homogenLabel.textContent = homogenErg[0];
homogenLabel.style.backgroundColor = homogenErg[1];
if (homogenErg[0] == "inhomogen"){
inhomogeneParameterListe.push(CurrentParameter.Name)}
}
}
// Bericht Update
let CheckboxValue = document.getElementById(`checkbox${index}`).checked;
if (MWList.length > 0 && CheckboxValue){
Bericht += `<h3>${PaName}</h3>`
Bericht += `<table class="BerichtTabelle">
<tr>
<th>Probe</th>
<th>Messwert</th>
<th>gerundet</th>
<th>Einheit</th>
<th>Einstufung</th>
<th>Grenzwert</th>
</tr>`
// Listen sortieren
let AllDataList = [];
for (u in MWList){
AllDataList.push({ sp: MWNameList[u],
mw: MWList[u],
rd: MWRoundedList[u],
es: ErgColorList[u],
gw: GWList[u],
eg: ErgList[u]
});
};
// console.log(AllDataList)
AllDataList.sort((a, b) => ((parseFloat(a.mw) < parseFloat(b.mw)) ? -1 :(parseFloat(a.mw) == parseFloat(b.mw)) ? 0 : 1));
for (let g = 0; g < AllDataList.length; g++){
MWNameList[g] = AllDataList[g].sp;
MWList[g] = AllDataList[g].mw;
MWRoundedList[g] = AllDataList[g].rd;
ErgColorList[g] = AllDataList[g].es;
GWList[g] = AllDataList[g].gw;
ErgList[g] = AllDataList[g].eg}
console.log(AllDataList)
// Mittelwert und Standardabweichung
if (MWList.length > 1 && (!(CurrentParameter instanceof DoubleParameter))){
// 4 von 5 Regel - Mittelwert
let currentMittelWert = mittelwert(MWList);
MWNameList.push("Mittelwert (X̅)");
MWList.push(currentMittelWert.toFixed(5));
let roundedCurrentMittelWert = currentMittelWert.toFixed(CurrentParameter.Rst);
let currentMittelWertErgebnis = CurrentParameter.auswertung(roundedCurrentMittelWert, toc);
MWRoundedList.push(roundedCurrentMittelWert);
ErgColorList.push(colordic[currentMittelWertErgebnis]);
let CurrentMittelWertGrenzwert = CurrentParameter.Gw[currentMittelWertErgebnis.split("DK")[1]];
if ((CurrentParameter == GV || CurrentParameter == TOC) && typeof(CurrentParameter.Gw[currentMittelWertErgebnis.split("DK")[1]]) == "object"){
CurrentMittelWertGrenzwert = CurrentMittelWertGrenzwert[toc]
}
GWList.push(CurrentMittelWertGrenzwert);
ErgList.push(currentMittelWertErgebnis);
//Statistischer Ansatz
let currentStandardabw = standardabweichung(MWList.slice(0, MWList.length -1), currentMittelWert);
let currentStreuung = streuung(currentStandardabw, MWList.length -1);
let currentMwPlusStreuung = currentMittelWert + currentStreuung;
let roundedCurrentMwPlusStreuung = currentMwPlusStreuung.toFixed(CurrentParameter.Rst);
let currentMwPlusStreuungErgebnis = CurrentParameter.auswertung(roundedCurrentMwPlusStreuung, toc);
MWNameList.push("X̅ + Streuung");
MWList.push(currentMwPlusStreuung.toFixed(5));
MWRoundedList.push(roundedCurrentMwPlusStreuung);
ErgColorList.push(colordic[currentMwPlusStreuungErgebnis]);
let currentMwPlusStreuungErgebnisGrenzwert = CurrentParameter.Gw[currentMwPlusStreuungErgebnis.split("DK")[1]];
if ((CurrentParameter == GV || CurrentParameter == TOC) && typeof(CurrentParameter.Gw[currentMwPlusStreuungErgebnis.split("DK")[1]]) == "object"){
currentMwPlusStreuungErgebnisGrenzwert = currentMwPlusStreuungErgebnisGrenzwert[toc];
};
GWList.push(currentMwPlusStreuungErgebnisGrenzwert);
ErgList.push(currentMwPlusStreuungErgebnis );
}
// Bericht Messwerttabellen einfügen
for (x in MWList){
Bericht += `<tr>
<td>${MWNameList[x]}</td>
<td style="text-align:center;">${MWList[x]}</td>
<td style="text-align:center;">${MWRoundedList[x]}</td>
<td style="text-align:center;">${CurrentParameter.Unit}</td>
<td style="background-color:${ErgColorList[x]}; text-align:center;">${ErgList[x]}</td>
<td style="text-align:center";>${GWList[x]} ${CurrentParameter.Unit}</td>
</tr>`
// Eine Reihe mit den Messwerten wird eingefügt
}
Bericht += "</table><br>"
}
}
// Inhomogene Parameter
if (inhomogeneParameterListe.length > 0){
Bericht += `<h3>Inhomogene Parameter</h3><ul>`
for (let x = 0; x < inhomogeneParameterListe.length; x++){
Bericht += `<li>${inhomogeneParameterListe[x]}</li>`
}
Bericht += "</ul>"
}
document.getElementById("Bericht").innerHTML = Bericht ;
document.getElementById("Bericht").style.color = "black";
document.getElementById("Bericht").style.background = "white";
updateCanvas()
}
function homogen(mwlist, zw){
let minValue = Math.min.apply(Math, mwlist);
let maxValue = Math.max.apply(Math, mwlist);
// console.log(zw);
if (mwlist.length < 1){
return ["Kein MW", ""]}
else if (mwlist.length == 1){
return ["Nur 1 MW", ""]}
else if (minValue * 2 >= maxValue) {
return ["homogen", "#348238"]}
else if (maxValue * 2 <= zw) {
return ["< 50% ZW", "#348238"]}
return ["inhomogen", "#722e2e"]
}
function mittelwert (input){
if ((typeof(input) == "object") && (input.length > 1)){
let result = 0;
for (let i = 0; i < input.length; i++){
result += parseFloat(input[i]);
}
result /= input.length;
return result}
}
function standardabweichung(Messwerte, Mittelwert){
let over = 0;
for (let i = 0; i < Messwerte.length; i++){
let currentMW = parseFloat(Messwerte[i]);
let Klammer = currentMW - parseFloat(Mittelwert);
over += Math.pow(Klammer, 2);
}
let ges = Math.pow((over /(Messwerte.length - 1)), 0.5);
return ges
}
function streuung(standardabweichung, probenzahl) {
let streuung = 1.65 * (parseFloat(standardabweichung) / Math.pow(probenzahl, 0.5))
return streuung
}
function hideText(row){
//console.log(row)
let checked = document.getElementById(`SampleNumber${row}`).checked
//console.log(checked)
for (index in ParaList){
//console.log(index)
let inputID = `Inp${ParaList[index].Name}${row}`;
//console.log(inputID);
let InputField = document.getElementById(inputID);
if (checked == true){
InputField.style.color = "black";
} else if (checked == false){
InputField.style.color = "white"
}
}
ausw();
}
function updateCanvas(){
currentCanvasParameter = document.getElementById("GO").value
console.log(currentCanvasParameter)
let ValueList = []
for (let i = 0; i < 12; i++){
let inputField = document.getElementById(`Inp${ParaList[currentCanvasParameter].Name}${i}`).value;
if (! (inputField == "")){
ValueList = ValueList.concat(inputField)
}
}
if (ValueList.length > 0){
graphicAusw();
}
}