forked from jgrimard/arc-flash-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArcFlashCalculatorClass.test.js
412 lines (381 loc) · 14.3 KB
/
ArcFlashCalculatorClass.test.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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
// 144,000 test cases for Arc Flash Calculator Class using Jest
const arcFlashCalculator = require('./ArcFlashCalculatorClass');
let fs = require('fs');
let csv = require('fast-csv');
describe('Arc Flash Calculator Class', () => {
let testcases = [];
// create beforeAll function to import test case data from CSV file
beforeAll(async () => {
return new Promise((resolve, reject) => {
fs.createReadStream(__dirname+'/ieee_1584_spreadsheet_results.csv')
.pipe(csv.parse({ headers: true }))
.on('error', error => reject(error))
.on('data', row => testcases.push(row))
.on('end', () => {
resolve(testcases);
});
});
});
afterAll(() => {
testcases = [];
});
test('should import CSV data into this test', () => {
expect(testcases.length).toBeGreaterThan(0);
});
// Test case data format
// EC,V_oc,I_bf,G,D,T,width,height,depth,I_arc_max,E_joules_max,AFB_max,I_arc_min,E_joules_min,AFB_min
// test each row of test case data
test('should calculate arc flash energy and arc flash boundary with 144,000 different tests', () => {
let worst_case_E_cal_percent_error = 0;
let worst_case_AFB_in_percent_error = 0;
for (let i = 0; i < testcases.length; i++) {
const testcase = testcases[i];
const ec = testcase.EC; //VCB, VCBB, HCB, VOA, HOA
const sec_v = testcase.V_oc * 1000; //convert kV to V
const I_bf = testcase.I_bf; //kA
const G = testcase.G; //mm
const D_in = testcase.D * 0.03937; //convert mm to in
const width_in = testcase.width * 0.03937; //convert mm to in
const height_in = testcase.height * 0.03937; //convert mm to in
const depth_in = testcase.depth * 0.03937; //convert mm to in
const T = testcase.T; //ms
const E_cal_expected = testcase.E_joules_max * 0.2390057356; //convert J to cal
const AFB_in_expected = testcase.AFB_max * 0.03937; //convert mm to in
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
expect(calc.E_cal).toBeCloseTo(E_cal_expected,1); //1 decimal place precision
expect(calc.AFB_in).toBeCloseTo(AFB_in_expected,1); //1 decimal place precision
// find worst case percentage difference between calculated and expected values
const E_cal_percent_error = Math.abs((calc.E_cal - E_cal_expected) / E_cal_expected) * 100;
const AFB_in_percent_error = Math.abs((calc.AFB_in - AFB_in_expected) / AFB_in_expected) * 100;
if (E_cal_percent_error > worst_case_E_cal_percent_error) {
worst_case_E_cal_percent_error = E_cal_percent_error;
}
if (AFB_in_percent_error > worst_case_AFB_in_percent_error) {
worst_case_AFB_in_percent_error = AFB_in_percent_error;
}
}
console.log('worst case E_cal percent error: ' + worst_case_E_cal_percent_error * 100 + '%');
console.log('worst case AFB_in percent error: ' + worst_case_AFB_in_percent_error * 100 + '%');
});
// I_bf_out_of_bounds tests
test('should throw error if I_bf is out of bounds 480v 108ka', () => {
const sec_v = 480;
const I_bf = 108;
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = 20;
const T = 0.1;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}
).toThrow('I_bf must be in ranges: 208V-600V: 0.5Ka to 106kA OR 601V-15000V: 0.2kA to 65kA');
});
test('should throw error if I_bf is out of bounds 480v 0.4ka', () => {
const sec_v = 480;
const I_bf = 0.4;
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = 20;
const T = 0.1;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}
).toThrow('I_bf must be in ranges: 208V-600V: 0.5Ka to 106kA OR 601V-15000V: 0.2kA to 65kA');
});
test('should throw error if I_bf is out of bounds 800v 110ka', () => {
const sec_v = 800;
const I_bf = 110;
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = 20;
const T = 0.1;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}
).toThrow('I_bf must be in ranges: 208V-600V: 0.5Ka to 106kA OR 601V-15000V: 0.2kA to 65kA');
});
test('should throw error if I_bf is out of bounds 800v 0.1ka', () => {
const sec_v = 800;
const I_bf = 0.1;
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = 20;
const T = 0.1;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}
).toThrow('I_bf must be in ranges: 208V-600V: 0.5Ka to 106kA OR 601V-15000V: 0.2kA to 65kA');
});
// sec_v_out_of_bounds tests
test('should throw error if sec_v is out of bounds 120v', () => {
const sec_v = 120;
const I_bf = 20;
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = 20;
const T = 0.1;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}
).toThrow('sec_v must be >= 208 and <= 15000');
});
test('should throw error if sec_v is out of bounds 18000v', () => {
const sec_v = 18000;
const I_bf = 20;
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = 20;
const T = 0.1;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}
).toThrow('sec_v must be >= 208 and <= 15000');
});
// ec_out_of_bounds tests
test('should throw error if ec is out of bounds', () => {
const sec_v = 480;
const I_bf = 20;
const ec = 'VCA';
const G = 50;
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = 20;
const T = 0.1;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}
).toThrow('ec must be one of VCB, VCBB, HCB, VOA, HOA');
});
// G_out_of_bounds tests
test('should throw error if G is out of bounds', () => {
const sec_v = 480;
const I_bf = 20;
const ec = 'VCB';
const G = 0;
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = 20;
const T = 0.1;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}).toThrow('G must be > 0');
});
test('should throw error if G is out of bounds', () => {
const sec_v = 480;
const I_bf = 20;
const ec = 'VCB';
const G = -5;
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = 20;
const T = 0.1;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}).toThrow('G must be > 0');
});
test('should throw error if width_in is out of bounds', () => {
const sec_v = 480;
const I_bf = 20;
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = 0;
const height_in = 20;
const depth_in = 20;
const T = 0.1;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}).toThrow('width_in must be > 0');
});
test('should throw error if height_in is out of bounds', () => {
const sec_v = 480;
const I_bf = 20;
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = 20;
const height_in = 0;
const depth_in = 20;
const T = 0.1;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}).toThrow('height_in must be > 0');
});
test('should throw error if depth_in is out of bounds', () => {
const sec_v = 480;
const I_bf = 20;
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = 0;
const T = 0.1;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}).toThrow('depth_in must be > 0');
});
test('should throw error if T is out of bounds', () => {
const sec_v = 480;
const I_bf = 20;
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = 20;
const T = 0;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}).toThrow('T must be > 0');
});
test('should throw error if T is out of bounds', () => {
const sec_v = 480;
const I_bf = 20;
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = 20;
const T = -5;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}).toThrow('T must be > 0');
});
// Test non text values for sec_v, I_bf, G, D_in, width_in, height_in, depth_in, T
test('should throw error if sec_v is not a number', () => {
const sec_v = '';
const I_bf = 20;
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = 20;
const T = 5;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
console.log(calc.sec_v);
}).toThrow('sec_v must be >= 208 and <= 15000');
});
test('should throw error if I_bf is not a number', () => {
const sec_v = 480;
const I_bf = '';
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = 20;
const T = 5;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}).toThrow('I_bf must be in ranges: 208V-600V: 0.5Ka to 106kA OR 601V-15000V: 0.2kA to 65kA');
});
test('should throw error if G is not a number', () => {
const sec_v = 480;
const I_bf = 20;
const ec = 'VCB';
const G = '';
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = 20;
const T = 5;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}).toThrow('G must be > 0');
});
test('should throw error if D_in is not a number', () => {
const sec_v = 480;
const I_bf = 20;
const ec = 'VCB';
const G = 50;
const D_in = '';
const width_in = 20;
const height_in = 20;
const depth_in = 20;
const T = 5;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}).toThrow('D_in must be > 0');
});
test('should throw error if width_in is not a number', () => {
const sec_v = 480;
const I_bf = 20;
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = '';
const height_in = 20;
const depth_in = 20;
const T = 5;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}).toThrow('width_in must be > 0');
});
test('should throw error if height_in is not a number', () => {
const sec_v = 480;
const I_bf = 20;
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = 20;
const height_in = '';
const depth_in = 20;
const T = 5;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}).toThrow('height_in must be > 0');
});
test('should throw error if depth_in is not a number', () => {
const sec_v = 480;
const I_bf = 20;
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = '';
const T = 5;
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in, depth_in, T);
}).toThrow('depth_in must be > 0');
});
test('should throw error if T is not a number', () => {
const sec_v = 480;
const I_bf = 20;
const ec = 'VCB';
const G = 50;
const D_in = 10;
const width_in = 20;
const height_in = 20;
const depth_in = 20;
const T = '';
expect(() => {
calc = new arcFlashCalculator(sec_v, I_bf, ec, G, D_in, width_in, height_in , depth_in, T);
}).toThrow('T must be > 0');
});
}); //end describe