-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtest_2_opflow.py
448 lines (385 loc) · 12.4 KB
/
test_2_opflow.py
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
from check_preconditions import check_preconditions
import os
import pytest
import mpi4py.rc
mpi4py.rc.threads = False
check_preconditions()
import exago # noqa
exago_ignore = -1000000
@pytest.mark.nocomm
@pytest.mark.MPI
def test_creating_opflow():
'''Testing creation of opflow object'''
opf = exago.OPFLOW()
@pytest.mark.nocomm
@pytest.mark.MPI
def test_get_prefix():
'''Test retrieving datafile path'''
path = exago.prefix()
assert isinstance(path, str)
@pytest.mark.nocomm
@pytest.mark.MPI
def test_set_obj_func_ints():
'''Testing setting objective function via integers'''
opf = exago.OPFLOW()
types = opf.get_objective_types()
# List of possible enum values (object list)
print(types)
for i in range(0, len(types)):
opf.set_objective_type(types[i])
obj = opf.get_objective_type()
assert isinstance(obj, exago.OPFLOWObjectiveType)
assert obj == types[i]
@pytest.mark.nocomm
@pytest.mark.MPI
def test_set_obj_func_strings():
'''Testing setting objective function via strings'''
opf = exago.OPFLOW()
types = list(exago.OPFLOWObjectiveType.__members__.items())
# List of tuple pairs of stringy values and corresponding enum value
print(types)
for i in range(0, len(types)):
opf.set_objective_type(types[i][0])
obj = opf.get_objective_type()
assert isinstance(obj, exago.OPFLOWObjectiveType)
assert obj == types[i][1]
@pytest.mark.nocomm
@pytest.mark.MPI
def test_set_initialization_ints():
'''Testing setting initialization type via integers'''
opf = exago.OPFLOW()
types = opf.get_initialization_types()
# List of possible enum values (object list)
print(types)
for i in range(0, len(types)):
opf.set_initialization_type(types[i])
ini = opf.get_initialization_type()
assert isinstance(ini, exago.OPFLOWInitializationType)
assert ini == types[i]
@pytest.mark.nocomm
@pytest.mark.MPI
def test_set_initialization_strings():
'''Testing setting initialization type via strings'''
opf = exago.OPFLOW()
types = list(exago.OPFLOWInitializationType.__members__.items())
# List of tuple pairs of stringy values and corresponding enum value
print(types)
for i in range(0, len(types)):
opf.set_initialization_type(types[i][0])
ini = opf.get_initialization_type()
assert isinstance(ini, exago.OPFLOWInitializationType)
assert ini == types[i][1]
@pytest.mark.nocomm
@pytest.mark.MPI
def test_set_genbusvoltage_ints():
'''Testing setting gen bus voltage type via ints'''
opf = exago.OPFLOW()
types = opf.get_gen_bus_voltage_types()
# List of possible enum values (object list)
print(types)
for i in range(0, len(types)):
opf.set_gen_bus_voltage_type(types[i])
volt = opf.get_gen_bus_voltage_type()
assert isinstance(volt, exago.OPFLOWGenBusVoltageType)
assert volt == types[i]
@pytest.mark.nocomm
@pytest.mark.MPI
def test_set_genbusvoltage_strings():
'''Testing setting gen bus voltage type via strings'''
opf = exago.OPFLOW()
types = list(exago.OPFLOWGenBusVoltageType.__members__.items())
# List of tuple pairs of stringy values and corresponding enum value
print(types)
for i in range(0, len(types)):
opf.set_gen_bus_voltage_type(types[i][0])
volt = opf.get_gen_bus_voltage_type()
assert isinstance(volt, exago.OPFLOWGenBusVoltageType)
assert volt == types[i][1]
@pytest.mark.nocomm
@pytest.mark.MPI
def test_set_has_gensetpoint():
'''Testing setting has gen set point'''
opf = exago.OPFLOW()
opf.set_has_gen_set_point(True)
b = opf.get_has_gen_set_point()
assert isinstance(b, bool)
assert b is True
opf.set_has_gen_set_point(False)
b = opf.get_has_gen_set_point()
assert isinstance(b, bool)
assert b is False
@pytest.mark.nocomm
@pytest.mark.MPI
def test_read_mat_power_data():
'''Test mat power data read'''
opf = exago.OPFLOW()
path = exago.prefix()
opf.read_mat_power_data(os.path.join(
path, 'share', 'exago', 'datafiles', 'case9', 'case9mod.m'))
@pytest.mark.nocomm
@pytest.mark.MPI
def test_set_model_and_solver():
'''Testing setting model'''
opf = exago.OPFLOW()
opf.set_solver("HIOP")
solver = opf.get_solver()
assert solver == "HIOP"
opf.set_model("POWER_BALANCE_HIOP")
model = opf.get_model()
assert model == "POWER_BALANCE_HIOP"
path = exago.prefix()
opf.read_mat_power_data(os.path.join(
path, 'share', 'exago', 'datafiles', 'case9', 'case9mod.m'))
@pytest.mark.nocomm
@pytest.mark.MPI
def test_set_hiop_compute_mode():
'''Testing hiop compute mode'''
opf = exago.OPFLOW()
opf.set_solver("HIOP")
opf.set_model("POWER_BALANCE_HIOP")
opf.set_hiop_compute_mode("CPU")
mode = opf.get_hiop_compute_mode()
assert mode == "CPU"
@pytest.mark.nocomm
@pytest.mark.MPI
def test_set_hiop_mem_space():
'''Testing hiop memory space'''
opf = exago.OPFLOW()
opf.set_hiop_mem_space("DEVICE")
mode = opf.get_hiop_mem_space()
assert mode == "DEVICE"
@pytest.mark.nocomm
@pytest.mark.MPI
def test_set_hiop_verbosity():
'''Testing setting hiop verbosity level'''
opf = exago.OPFLOW()
v = 3
opf.set_hiop_verbosity_level(v)
level = opf.get_hiop_verbosity_level()
assert isinstance(level, int)
assert level == v
@pytest.mark.nocomm
@pytest.mark.MPI
def test_solve_opflow():
'''Testing opflow solve'''
opf = exago.OPFLOW()
opf.set_solver("HIOP")
opf.set_model("POWER_BALANCE_HIOP")
opf.set_hiop_mem_space("DEFAULT")
opf.set_hiop_compute_mode("CPU")
path = exago.prefix()
opf.read_mat_power_data(os.path.join(
path, 'share', 'exago', 'datafiles', 'case9', 'case9mod.m'))
opf.solve()
@pytest.mark.nocomm
@pytest.mark.MPI
def test_obj_func():
'''Testing objective function value and iterations'''
opf = exago.OPFLOW()
opf.set_solver("HIOP")
opf.set_model("POWER_BALANCE_HIOP")
opf.set_hiop_mem_space("DEFAULT")
opf.set_hiop_compute_mode("CPU")
path = exago.prefix()
opf.read_mat_power_data(os.path.join(
path, 'share', 'exago', 'datafiles', 'case9', 'case9mod.m'))
opf.set_model('POWER_BALANCE_HIOP')
opf.set_solver('HIOP')
opf.set_hiop_compute_mode("CPU")
opf.solve()
obj = opf.get_objective()
assert isinstance(obj, float)
niter = opf.get_num_iterations()
assert isinstance(niter, int)
@pytest.mark.nocomm
@pytest.mark.MPI
def test_convergence_status():
'''Testing convergence status'''
opf = exago.OPFLOW()
opf.set_solver("HIOP")
opf.set_model("POWER_BALANCE_HIOP")
opf.set_hiop_mem_space("DEFAULT")
opf.set_hiop_compute_mode("CPU")
path = exago.prefix()
opf.read_mat_power_data(os.path.join(
path, 'share', 'exago', 'datafiles', 'case9', 'case9mod.m'))
opf.set_model('POWER_BALANCE_HIOP')
opf.set_solver('HIOP')
opf.set_hiop_compute_mode("CPU")
opf.solve()
s = opf.get_convergence_status()
assert isinstance(s, bool)
assert s is True
@pytest.mark.nocomm
@pytest.mark.MPI
def test_tolerance_opflow():
'''Testing setting tolerance in opflow object'''
opf = exago.OPFLOW()
opf.set_tolerance(1e-6)
tol = opf.get_tolerance()
assert isinstance(tol, float)
assert tol == 1e-6
opf.set_tolerance(1e-5)
tol = opf.get_tolerance()
assert isinstance(tol, float)
assert tol == 1e-5
@pytest.mark.nocomm
@pytest.mark.MPI
def test_set_loadloss_penalty_opflow():
'''Testing setting load loss penalty in opflow object'''
opf = exago.OPFLOW()
opf.set_loadloss_penalty(999)
penalty = opf.get_loadloss_penalty()
assert isinstance(penalty, float)
assert penalty == 999
@pytest.mark.nocomm
@pytest.mark.MPI
def test_ignore_lineflow_constraints():
'''Testing toggling use lineflow constraints'''
opf = exago.OPFLOW()
opf.set_ignore_lineflow_constraints(True)
b = opf.get_ignore_lineflow_constraints()
assert isinstance(b, bool)
assert b is True
opf.set_ignore_lineflow_constraints(False)
b = opf.get_ignore_lineflow_constraints()
assert isinstance(b, bool)
assert b is False
@pytest.mark.nocomm
@pytest.mark.MPI
def test_include_loadloss():
'''Testing toggling use loadloss'''
opf = exago.OPFLOW()
opf.set_has_loadloss(True)
b = opf.get_has_loadloss()
assert isinstance(b, bool)
assert b is True
opf.set_has_loadloss(False)
b = opf.get_has_loadloss()
assert isinstance(b, bool)
assert b is False
@pytest.mark.nocomm
@pytest.mark.MPI
def test_include_powerimbalance():
'''Testing toggling use powerimbalance'''
opf = exago.OPFLOW()
opf.set_has_bus_power_imbalance(True)
b = opf.get_has_bus_power_imbalance()
assert isinstance(b, bool)
assert b is True
opf.set_has_bus_power_imbalance(False)
b = opf.get_has_bus_power_imbalance()
assert isinstance(b, bool)
assert b is False
@pytest.mark.nocomm
@pytest.mark.MPI
def test_use_agc():
'''Testing toggling AGC'''
opf = exago.OPFLOW()
opf.set_use_agc(True)
b = opf.get_use_agc()
assert isinstance(b, bool)
assert b is True
opf.set_use_agc(False)
b = opf.get_use_agc()
assert isinstance(b, bool)
assert b is False
@pytest.mark.nocomm
@pytest.mark.MPI
def test_set_bus_powerimbalance_penalty_opflow():
'''Testing setting power imbalance penalty in opflow object'''
opf = exago.OPFLOW()
opf.set_bus_power_imbalance_penalty(999)
p = opf.get_bus_power_imbalance_penalty()
assert isinstance(p, float)
assert p == 999
@pytest.mark.nocomm
@pytest.mark.MPI
def test_set_weight():
'''Testing set_weight'''
opf = exago.OPFLOW()
opf.set_weight(0.5)
# There is currently no opflow.get_weight()
@pytest.mark.nocomm
@pytest.mark.MPI
def test_skip_options():
'''Testing skip_options'''
opf = exago.OPFLOW()
opf.skip_options(True)
opf.skip_options(False)
# There is currently no query method for this
@pytest.mark.nocomm
@pytest.mark.MPI
def test_ps():
'''Testing ps set up'''
opf = exago.OPFLOW()
path = exago.prefix()
opf.read_mat_power_data(os.path.join(
path, 'share', 'exago', 'datafiles', 'case9', 'case9mod.m'))
opf.set_up_ps()
@pytest.mark.nocomm
@pytest.mark.MPI
def test_ps_set_gen_power_limits():
'''Testing ps set gen power limits'''
opf = exago.OPFLOW()
opf.set_solver("HIOP")
opf.set_model("POWER_BALANCE_HIOP")
opf.set_hiop_mem_space("DEFAULT")
opf.set_hiop_compute_mode("CPU")
path = exago.prefix()
opf.read_mat_power_data(os.path.join(
path, 'share', 'exago', 'datafiles', 'case9', 'case9mod.m'))
opf.set_up_ps()
opf.ps_set_gen_power_limits(3, "1 ", 65, 0, exago_ignore, exago_ignore)
opf.solve()
@pytest.mark.nocomm
@pytest.mark.MPI
def test_solution_to_ps():
'''Testing ps solution'''
opf = exago.OPFLOW()
opf.set_solver("HIOP")
opf.set_model("POWER_BALANCE_HIOP")
opf.set_hiop_mem_space("DEFAULT")
opf.set_hiop_compute_mode("CPU")
path = exago.prefix()
opf.read_mat_power_data(os.path.join(
path, 'share', 'exago', 'datafiles', 'case9', 'case9mod.m'))
opf.set_up_ps()
opf.ps_set_gen_power_limits(3, "1 ", 65, 0, exago_ignore, exago_ignore)
opf.solve()
opf.solution_to_ps()
@pytest.mark.nocomm
@pytest.mark.MPI
def test_get_gen_dispatch():
'''Testing ps get gen dispatch'''
opf = exago.OPFLOW()
opf.set_solver("HIOP")
opf.set_model("POWER_BALANCE_HIOP")
opf.set_hiop_mem_space("DEFAULT")
opf.set_hiop_compute_mode("CPU")
opf.set_hiop_verbosity_level(3)
path = exago.prefix()
opf.read_mat_power_data(os.path.join(
path, 'share', 'exago', 'datafiles', 'case9', 'case9mod.m'))
opf.set_up_ps()
opf.ps_set_gen_power_limits(3, "1 ", 65, 0, exago_ignore, exago_ignore)
opf.solve()
opf.solution_to_ps()
pg1set, qg1set = opf.get_gen_dispatch(1, "1 ")
assert isinstance(pg1set, float)
assert isinstance(qg1set, float)
@pytest.mark.nocomm
@pytest.mark.MPI
def test_save_solution():
'''Testing opflow saving solve to file'''
opf = exago.OPFLOW()
opf.set_solver("HIOP")
opf.set_model("POWER_BALANCE_HIOP")
opf.set_hiop_mem_space("DEFAULT")
opf.set_hiop_compute_mode("CPU")
path = exago.prefix()
opf.read_mat_power_data(os.path.join(
path, 'share', 'exago', 'datafiles', 'case9', 'case9mod.m'))
opf.solve()
filepath = os.path.join(path, '..', 'tmp.output')
opf.save_solution(exago.CSV, filepath)