-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprepare-calc-data.js
More file actions
262 lines (242 loc) · 8.4 KB
/
prepare-calc-data.js
File metadata and controls
262 lines (242 loc) · 8.4 KB
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
// Author: Austin C Arledge Sr (austin.c.arledge@gmail.com) 22 Jul 22
const getCalcData = () => {
let compareMap = organizeArrayData();
let result = {
arrays: {
solar: [], // {number of panels: , shading: , tilt: }
// New panel versions here
solarV2: [],
// New panel versions here
water: [], // {number of panels: , shading: , tilt: }
}
};
prepareCalcDataHelper(result, compareMap);
return result;
}
// Iterates through the grouping map by every single level, building the result map from said grouping map
// i.e. This function turns a map full of arrays grouped by type, number, tilt, and finally rotation
// into a result map that can be sent to the KumuHub calculator. (See compareMap below for the "grouping map")
const prepareCalcDataHelper = (result, compareMap) => {
for (let type in compareMap.arrays) {
for (let num in compareMap.arrays[type]) {
for (let tilt in compareMap.arrays[type][num]) {
for (let degree in compareMap.arrays[type][num][tilt]) {
let totalShading = 0.0;
let numberOfPanels = 0;
// For every object/array in the rotation
for (let obj in compareMap.arrays[type][num][tilt][degree]) {
// Fill in the missing data
numberOfPanels += compareMap.arrays[type][num][tilt][degree][obj].panels.length;
// For every panel in the array
for (let i in compareMap.arrays[type][num][tilt][degree][obj].panels) {
totalShading += parseFloat(compareMap.arrays[type][num][tilt][degree][obj].panels[i].shading);
}
}
// Create the temporary sub object
let subData = {
panels: numberOfPanels,
shading: totalShading / numberOfPanels,
tilt: tilt,
rotation: degree
}
// Append the object
if (type == "solar") {
result.arrays.solar.push(subData);
}
else if (type == "water") {
result.arrays.water.push(subData);
}
// New panel versions here
else if (type == "solarV2") {
result.arrays.solarV2.push(subData);
}
// New panel versions here
}
}
}
}
}
// Gather the panel array data and organize it
const organizeArrayData = () => {
// Comparison Map used for grouping arrays of the same type to save calculator space:
let compareMap = {
arrays: {
solar: {
0: {
10: {},
20: {},
40: {}
},
1: {
10: {},
20: {},
40: {}
},
2: {
10: {},
20: {},
40: {}
},
3: {
10: {},
20: {},
40: {}
},
4: {
10: {},
20: {},
40: {}
},
5: {
10: {},
20: {},
40: {}
},
6: {
10: {},
20: {},
40: {}
},
7: {
10: {},
20: {},
40: {}
},
8: {
10: {},
20: {},
40: {}
},
9: {
10: {},
20: {},
40: {}
},
},
// New panel versions here
solarV2: {
0: {
10: {},
20: {},
40: {}
},
1: {
10: {},
20: {},
40: {}
},
2: {
10: {},
20: {},
40: {}
},
3: {
10: {},
20: {},
40: {}
},
4: {
10: {},
20: {},
40: {}
},
5: {
10: {},
20: {},
40: {}
},
6: {
10: {},
20: {},
40: {}
},
7: {
10: {},
20: {},
40: {}
},
8: {
10: {},
20: {},
40: {}
},
9: {
10: {},
20: {},
40: {}
},
},
// New panel versions here
water: {
0: {
10: {},
20: {},
40: {}
},
1: {
10: {},
20: {},
40: {}
},
2: {
10: {},
20: {},
40: {}
},
3: {
10: {},
20: {},
40: {}
},
4: {
10: {},
20: {},
40: {}
},
5: {
10: {},
20: {},
40: {}
},
6: {
10: {},
20: {},
40: {}
},
7: {
10: {},
20: {},
40: {}
},
8: {
10: {},
20: {},
40: {}
},
9: {
10: {},
20: {},
40: {}
},
},
}
};
organizeArrayDataHelper("solar", compareMap);
organizeArrayDataHelper("water", compareMap);
// New panel versions here
organizeArrayDataHelper("solarV2", compareMap);
// New panel versions here
return compareMap;
}
// Helper function to build the comparison map & organize arrays by their values
const organizeArrayDataHelper = (type, obj) => {
saveObj.allObjs.get("panels").get(type).forEach(arr => {
// Attempt to place this array in it's respective comparison map position
try {
obj.arrays[type][arr.arrayNum][arr.pitch][arr.degrees].push(arr);
} catch (err) {
// If that degree wasn't found, make a new entry in the map
obj.arrays[type][arr.arrayNum][arr.pitch][arr.degrees] = [arr];
}
})
}