-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest.py
761 lines (682 loc) · 31.2 KB
/
test.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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
### import collections
'''
This code contains the utilis for test the models, generate the tables we present and the plots.
'''
from cProfile import label
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
import numpy as np
from numpy import linalg as LA
import gym
import os
import random
import sys
from gym import spaces
from gym.utils import seeding
import copy
import time
from scipy.io import loadmat
import pandapower as pp
import pandapower.networks as pn
import pandas as pd
import math
import torch
import torch.nn as nn
import torch.nn.functional as F
import argparse
from env_single_phase_13bus import IEEE13bus, create_13bus
from env_single_phase_123bus import IEEE123bus, create_123bus
from safeDDPG import ValueNetwork, SafePolicyNetwork, DDPG, PolicyNetwork, SafePolicy3phase, LinearPolicy
from IEEE_13_3p import IEEE13bus3p, create_13bus3p
use_cuda = torch.cuda.is_available()
device = torch.device("cuda" if use_cuda else "cpu")
parser = argparse.ArgumentParser(description='Single Phase Safe DDPG')
parser.add_argument('--env_name', default="13bus",
help='name of the environment to run')
parser.add_argument('--algorithm', default='safe-ddpg', help='name of algorithm')
parser.add_argument('--safe_type', default='three_single')
args = parser.parse_args()
seed = 10
torch.manual_seed(seed)
plt.rcParams['font.size'] = '20'
"""
Create Agent list and replay buffer
"""
max_ac = 0.3
ph_num = 1
slope = 2
if args.env_name == '13bus':
pp_net = create_13bus()
injection_bus = np.array([2, 7, 9])
env = IEEE13bus(pp_net, injection_bus)
num_agent = 3
if args.env_name == '123bus':
pp_net = create_123bus()
injection_bus = np.array([10, 11, 16, 20, 33, 36, 48, 59, 66, 75, 83, 92, 104, 61])-1
env = IEEE123bus(pp_net, injection_bus)
num_agent = 14
max_ac = 0.8
slope = 5
if args.env_name == '13bus3p':
# injection_bus = np.array([675,633,680])
injection_bus = np.array([633,634,671,645,646,692,675,611,652,632,680,684])
pp_net, injection_bus_dict = create_13bus3p(injection_bus)
max_ac = 0.4
env = IEEE13bus3p(pp_net,injection_bus_dict)
num_agent = len(injection_bus)
ph_num=3
if ph_num == 3:
type_name = 'three-phase'
else:
type_name = 'single-phase'
obs_dim = env.obs_dim
action_dim = env.action_dim
hidden_dim = 100
ddpg_agent_list = []
safe_ddpg_agent_list = []
linear_agent_list = []
for i in range(num_agent):
if not ph_num == 3:
safe_ddpg_value_net = ValueNetwork(obs_dim=obs_dim, action_dim=action_dim, hidden_dim=hidden_dim).to(device)
safe_ddpg_policy_net = SafePolicyNetwork(env=env, obs_dim=obs_dim, action_dim=action_dim, hidden_dim=hidden_dim).to(device)
else:
if ph_num == 3:
obs_dim = len(env.injection_bus[env.injection_bus_str[i]])
action_dim = obs_dim
safe_ddpg_policy_net = SafePolicy3phase(env, obs_dim, action_dim, hidden_dim, env.injection_bus_str[i]).to(device)
safe_ddpg_value_net = ValueNetwork(obs_dim=obs_dim, action_dim=action_dim, hidden_dim=hidden_dim).to(device)
ddpg_value_net = ValueNetwork(obs_dim=obs_dim, action_dim=action_dim, hidden_dim=hidden_dim).to(device)
ddpg_policy_net = PolicyNetwork(env=env, obs_dim=obs_dim, action_dim=action_dim, hidden_dim=hidden_dim).to(device)
ddpg_agent = DDPG(policy_net=ddpg_policy_net, value_net=ddpg_value_net,
target_policy_net=ddpg_policy_net, target_value_net=ddpg_value_net)
linear_value_net = ValueNetwork(obs_dim=obs_dim, action_dim=action_dim, hidden_dim=hidden_dim).to(device)
linear_policy_net = LinearPolicy(env,ph_num).to(device)
linear_agent = DDPG(policy_net=linear_policy_net, value_net=linear_value_net,
target_policy_net=linear_policy_net, target_value_net=linear_value_net)
safe_ddpg_agent = DDPG(policy_net=safe_ddpg_policy_net, value_net=safe_ddpg_value_net,
target_policy_net=safe_ddpg_policy_net, target_value_net=safe_ddpg_value_net)
ddpg_agent_list.append(ddpg_agent)
safe_ddpg_agent_list.append(safe_ddpg_agent)
linear_agent_list.append(linear_agent)
for i in range(num_agent):
ddpg_policynet_dict = torch.load(f'checkpoints/{type_name}/{args.env_name}/ddpg/policy_net_checkpoint_a{i}.pth')
ddpg_agent_list[i].policy_net.load_state_dict(ddpg_policynet_dict)
linear_policynet_dict = torch.load(f'checkpoints/{type_name}/{args.env_name}/linear/policy_net_checkpoint_a{i}.pth')
linear_agent_list[i].policy_net.load_state_dict(linear_policynet_dict)
if ph_num == 3:
safe_ddpg_policynet_dict = torch.load(f'checkpoints/{type_name}/{args.env_name}/safe-ddpg/{args.safe_type}/policy_net_checkpoint_a{i}.pth')
safe_ddpg_agent_list[i].policy_net.load_state_dict(safe_ddpg_policynet_dict)
else:
safe_ddpg_policynet_dict = torch.load(f'checkpoints/{type_name}/{args.env_name}/safe-ddpg/policy_net_checkpoint_a{i}.pth')
safe_ddpg_agent_list[i].policy_net.load_state_dict(safe_ddpg_policynet_dict)
def plot_action():
"""
This is used to visualize the policy network.
"""
fig, axs = plt.subplots(1, 1, figsize=(16,12))
for i in range(num_agent):
# plot policy
N = 40
s_array = np.zeros(N,)
a_array_baseline = np.zeros(N,)
safe_ddpg_a_array = np.zeros(N,)
for j in range(N):
state = np.array([0.8+0.01*j])
s_array[j] = state
safe_ddpg_action = safe_ddpg_agent_list[i].policy_net.get_action(np.asarray([state]))
safe_ddpg_action = np.clip(safe_ddpg_action, -max_ac, max_ac)
safe_ddpg_a_array[j] = -safe_ddpg_action
axs.plot(s_array, safe_ddpg_a_array, label = f'stable-DDPG at {injection_bus[i]}')
for i in range(num_agent):
# plot policy
N = 40
s_array = np.zeros(N,)
a_array_baseline = np.zeros(N,)
ddpg_a_array = np.zeros(N,)
safe_ddpg_a_array = np.zeros(N,)
for j in range(N):
state = np.array([0.8+0.01*j])
s_array[j] = state
action_baseline = (np.maximum(state-1.03, 0)-np.maximum(0.97-state, 0)).reshape((1,))
ddpg_action = ddpg_agent_list[i].policy_net.get_action(np.asarray([state]))
ddpg_action = np.clip(ddpg_action, -max_ac, max_ac)
a_array_baseline[j] = -action_baseline[0]
ddpg_a_array[j] = -ddpg_action
axs.plot(s_array, ddpg_a_array, '--', label = f'DDPG at {injection_bus[i]}')
axs.plot(s_array, 2*a_array_baseline, '-.', label = 'Linear',color='r')
axs.legend(loc='lower left', prop={"size":20})
plt.show()
def plot_traj():
ddpg_plt=[]
safe_plt = []
ddpg_a_plt=[]
safe_a_plt = []
state = env.reset()
episode_reward = 0
last_action = np.zeros((num_agent,1))
action_list=[]
state_list =[]
state_list.append(state)
for step in range(40):
action = []
for i in range(num_agent):
# sample action according to the current policy and exploration noise
action_agent = ddpg_agent_list[i].policy_net.get_action(np.asarray([state[i]]))#+np.random.normal(0, 0.05)
action_agent = np.clip(action_agent, -max_ac, max_ac)
action.append(action_agent)
# PI policy
action = last_action - np.asarray(action)
# execute action a_t and observe reward r_t and observe next state s_{t+1}
next_state, reward, reward_sep, done = env.step_Preward(action, (last_action-action))
if done:
print("finished")
action_list.append(action)
state_list.append(next_state)
last_action = np.copy(action)
state = next_state
fig, axs = plt.subplots(1, 2, figsize=(16,7))
for i in range(num_agent):
dps = axs[0].plot(range(len(action_list)), np.array(state_list)[:len(action_list),i], '-.', label = f'DDPG at {injection_bus[i]}', linewidth=2)
dpa = axs[1].plot(range(len(action_list)), np.array(action_list)[:,i], '-.', label = f'DDPG at {injection_bus[i]}', linewidth=2)
ddpg_plt.append(dps)
ddpg_a_plt.append(dpa)
state = env.reset()
episode_reward = 0
last_action = np.zeros((num_agent,1))
action_list=[]
state_list =[]
state_list.append(state)
for step in range(40):
action = []
for i in range(num_agent):
# sample action according to the current policy and exploration noise
action_agent = safe_ddpg_agent_list[i].policy_net.get_action(np.asarray([state[i]]))#+np.random.normal(0, 0.05)
# action_agent = (np.maximum(state[i]-1.05, 0)-np.maximum(0.95-state[i], 0)).reshape((1,))*2
action_agent = np.clip(action_agent, -max_ac, max_ac)
action.append(action_agent)
# PI policy
action = last_action - np.asarray(action)
# execute action a_t and observe reward r_t and observe next state s_{t+1}
next_state, reward, reward_sep, done = env.step_Preward(action, (last_action-action))
if done:
print("finished")
action_list.append(action)
state_list.append(next_state)
last_action = np.copy(action)
state = next_state
safe_name = []
for i in range(num_agent):
safes=axs[0].plot(range(len(action_list)), np.array(state_list)[:len(action_list),i], '-', label = f'Stable-DDPG at {injection_bus[i]}', linewidth=2)
safea=axs[1].plot(range(len(action_list)), np.array(action_list)[:,i], label = f'Stable-DDPG at {injection_bus[i]}', linewidth=2)
safe_plt.append(safes)
safe_name.append(f'Stable-DDPG at {injection_bus[i]}')
safe_a_plt.append(safea)
# leg1 = plt.legend(safe_a_plt, safe_name, loc='lower left')
axs[0].legend(loc='upper right', prop={"size":20})
axs[1].legend(loc='lower left', prop={"size":20})
axs[0].set_xlabel('Steps')
axs[1].set_xlabel('Steps')
axs[0].set_ylabel('Bus Voltage [p.u.]')
axs[1].set_ylabel('Reactive Power Injection [MVar]')
plt.tight_layout()
plt.show()
#test success rate, voltage violation after 40 steps
def test_suc_rate(algm, step_num=60):
success_num = 0
final_state_list = []
final_step_list = []
control_cost_list = []
overall_time =0
for rep in range(500):
state = env.reset(rep)
episode_reward = 0
last_action = np.zeros((num_agent,ph_num))
action_list=[]
state_list =[]
state_list.append(state)
control_action = []
for step in range(step_num):
action = []
begin_time = time.time()
for i in range(num_agent):
if ph_num==3:
action_agent = np.zeros(3)
phases = env.injection_bus[env.injection_bus_str[i]]
id = get_id(phases)
if algm == 'linear':
action_tmp = linear_agent_list[i].policy_net.get_action(np.asarray([state[i,id]]))
action_tmp = action_tmp.reshape(len(id),)
elif algm == 'safe-ddpg':
action_tmp = safe_ddpg_agent_list[i].policy_net.get_action(np.asarray([state[i,id]]))
action_tmp = action_tmp.reshape(len(id),)
elif algm == 'ddpg':
action_tmp = ddpg_agent_list[i].policy_net.get_action(np.asarray([state[i,id]]))
action_tmp = action_tmp.reshape(len(id),)
# if algm != 'linear':
for p in range(len(phases)):
action_agent[id[p]]=action_tmp[p]
action_agent = np.clip(action_agent, -max_ac, max_ac)
action.append(action_agent)
# sample action according to the current policy and exploration noise
else:
if algm == 'linear':
action_agent = linear_agent_list[i].policy_net.get_action(np.asarray([state[i]]))
elif algm == 'safe-ddpg':
action_agent = safe_ddpg_agent_list[i].policy_net.get_action(np.asarray([state[i]]))
elif algm == 'ddpg':
action_agent = ddpg_agent_list[i].policy_net.get_action(np.asarray([state[i]]))
#
action_agent = np.clip(action_agent, -max_ac, max_ac)
action.append(action_agent)
end_time=time.time()
time_elapse = end_time-begin_time
overall_time += time_elapse
# PI policy
action = last_action - np.asarray(action)
control_action.append(np.abs(action))
# execute action a_t and observe reward r_t and observe next state s_{t+1}
next_state, reward, reward_sep, done = env.step_Preward(action, (last_action-action))
if done:
success_num += 1
final_step_list.append(step+1)
control_cost_list.append(np.sum(np.asarray(control_action)))
break
action_list.append(last_action-action)
state_list.append(next_state)
last_action = np.copy(action)
state = next_state
# if not done: # if this is commented out, the metrics here only consider successful cases
# final_step_list.append(step_num)
# control_cost_list.append(np.sum(np.asarray(control_action)))
final_state_list.append(next_state)
print(f'result for {algm}')
print(success_num)
print(np.mean(final_step_list), np.std(final_step_list))
print("Elapsed Time: {:.6f} ms".format(overall_time/np.sum(final_step_list)*1000/3))
print('cost',np.mean(control_cost_list), np.std(control_cost_list))
return final_state_list
def plot_bar(num_agent):
print('max')
xlab = 'Voltage Violation (per test scenario)'
plt.rcParams['font.size'] = '11'
plt.figure(figsize=(3.96,2.87),dpi=300)
plt.gcf().subplots_adjust(bottom=0.17,left=0.15)
marks=[1.0,0,0,0,0]
bars=('Stable','5-7%','7-9%','9-10%','>10%')
y=np.arange(len(bars))
plt.bar(y+0.2,marks, 0.4,color='b',label='Stable-DDPG')
state_list = test_suc_rate('ddpg',step_num=100)
state_list = np.asarray(state_list)
state_list = np.abs(state_list-1)
# print(state_list.shape)
# np.savetxt('state13.txt',state_list)
# state_list = np.loadtxt('state123h.txt')
if ph_num == 3:
state_list_3p = []
for i in range(num_agent):
phases = env.injection_bus[env.injection_bus_str[i]]
id = get_id(phases)
if len(id)>1:
# print(np.max(state_list[:,i,id],axis=1).shape)
state_list_3p.append(np.reshape(np.max(state_list[:,i,id],axis=1), (len(state_list),1)))
else:
state_list_3p.append(np.reshape(state_list[:,i,id], (len(state_list),1)))
state_list_3p = np.concatenate(state_list_3p,axis=1)
# print(state_list_3p.shape)
# exit(0)
if ph_num == 3:
state_list = state_list_3p
state_list = np.max(state_list,axis=1)
# state_list = np.abs(state_list-1)
marks = [0,0,0,0,0]
marks[0]=np.sum(state_list<0.05)
# print(state)
marks[1]=np.sum(state_list<0.07)-marks[0]
marks[2]=np.sum(state_list<0.09)-marks[1]-marks[0]
marks[3]=np.sum(state_list<0.1)-marks[1]-marks[0]-marks[2]
if ph_num == 3:
num_agent = state_list_3p.shape[1]
marks[4]=len(state_list)-marks[1]-marks[0]-marks[2]-marks[3]
marks = np.array(marks)/len(state_list)
print(marks)
plt.bar(y-0.2,marks,0.4,color='r',label='DDPG')
plt.xticks(y,bars)
plt.xlabel(xlab)
plt.ylabel('Frequency')
plt.legend(loc='upper right')
plt.show()
def plot_bar_avg(num_agent):
print('avg')
xlab = 'Voltage Violation (per bus)'
plt.rcParams['font.size'] = '11'
plt.figure(figsize=(3.96,2.87),dpi=300)
plt.gcf().subplots_adjust(bottom=0.17,left=0.15)
marks=[1.0,0,0,0,0]
bars=('Stable','5-7%','7-9%','9-10%','>10%')
y=np.arange(len(bars))
plt.bar(y+0.2,marks, 0.4,color='b',label='Stable-DDPG')
state_list = test_suc_rate('ddpg',step_num=100)
state_list = np.asarray(state_list)
if ph_num == 3:
state_list_3p = []
for i in range(num_agent):
phases = env.injection_bus[env.injection_bus_str[i]]
id = get_id(phases)
state_list_3p.append(state_list[:,i,id])
state_list_3p = np.concatenate(state_list_3p,axis=1)
if ph_num == 3:
state_list = state_list_3p
state_list = np.abs(state_list-1)
marks = [0,0,0,0,0]
marks[0]=np.sum(state_list<0.05)
marks[1]=np.sum(state_list<0.07)-marks[0]
marks[2]=np.sum(state_list<0.09)-marks[1]-marks[0]
marks[3]=np.sum(state_list<0.1)-marks[1]-marks[0]-marks[2]
if ph_num == 3:
num_agent = state_list_3p.shape[1]
marks[4]=len(state_list)*num_agent-marks[1]-marks[0]-marks[2]-marks[3]
marks = np.array(marks)/len(state_list)/num_agent
print(marks)
plt.bar(y-0.2,marks,0.4,color='r',label='DDPG')
plt.xticks(y,bars)
plt.xlabel(xlab)
plt.ylabel('Frequency')
plt.legend(loc='upper right')
plt.show()
def plot_traj_1b_mt():
color_set = ['#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', '#9467bd', '#8c564b']
fig, axs = plt.subplots(1, 2, figsize=(13,4))
bus_id = 2#8
print(f'trajectory of bus {injection_bus[bus_id]+1}')
for numd in range(5):
state = env.reset(numd+11)
episode_reward = 0
last_action = np.zeros((num_agent,1))
action_list=[]
state_list =[]
state_list.append(state)
for step in range(50):
action = []
for i in range(num_agent):
# sample action according to the current policy and exploration noise
action_agent = safe_ddpg_agent_list[i].policy_net.get_action(np.asarray([state[i]]))#+np.random.normal(0, 0.05)
# action_agent = (np.maximum(state[i]-1.05, 0)-np.maximum(0.95-state[i], 0)).reshape((1,))*2
action_agent = np.clip(action_agent, -max_ac, max_ac)
action.append(action_agent)
# PI policy
action = last_action - np.asarray(action)
# execute action a_t and observe reward r_t and observe next state s_{t+1}
next_state, reward, reward_sep, done = env.step_Preward(action, (last_action-action))
action_list.append(action)
state_list.append(next_state)
last_action = np.copy(action)
state = next_state
axs[0].plot(range(len(action_list)), np.array(state_list)[:len(action_list),bus_id], '-', label = f'Evolution {numd+1}', linewidth=2,color=color_set[numd])
axs[1].plot(range(len(action_list)), np.array(action_list)[:,bus_id], label = f'Evolution {numd+1}', linewidth=2,color=color_set[numd])
lb = axs[0].plot(range(len(action_list)), [0.95]*len(action_list), linestyle='--', dashes=(5, 10), color='g', label=r'$v\underbar$')
ub = axs[0].plot(range(len(action_list)), [1.05]*len(action_list), linestyle='--', dashes=(5, 10), color='r', label=r'$\bar{v}$')
# axs[0].legend()
box = axs[0].get_position()
axs[0].set_position([box.x0-0.05*box.width, box.y0+0.1*box.height,
box.width* 0.87, box.height])
box = axs[1].get_position()
axs[1].set_position([box.x0-0.12*box.width, box.y0+0.1*box.height,
box.width* 0.87, box.height])
axs[0].legend(loc='right', bbox_to_anchor=(2.90, 0.4),
fancybox=True, shadow=True, ncol=1, prop={"size":13})
axs[0].set_xlabel('Iteretion Steps')
axs[1].set_xlabel('Iteretion Steps')
axs[0].set_xticks(np.arange(0, 50, step=20))
axs[1].set_xticks(np.arange(0, 50, step=20))
axs[0].set_yticks(np.arange(0.85, 1.2, step=0.05))
axs[1].set_yticks(np.arange(-5, 3, step=2.5))
axs[0].set_ylabel('Bus Voltage [p.u.]')
axs[1].set_ylabel('q Injection [MVar]')
plt.show()
#11, 36, 75
def plot_traj_123(seed): #only for 123 bus
color_set = ['#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', '#9467bd', '#8c564b']
ddpg_plt=[]
safe_plt = []
ddpg_a_plt=[]
safe_a_plt = []
state = env.reset(seed)
episode_reward = 0
last_action = np.zeros((num_agent,1))
action_list=[]
state_list =[]
state_list.append(state)
for step in range(100):
action = []
for i in range(num_agent):
# sample action according to the current policy and exploration noise
action_agent = ddpg_agent_list[i].policy_net.get_action(np.asarray([state[i]]))#+np.random.normal(0, 0.05)
action_agent = np.clip(action_agent, -max_ac, max_ac)
action.append(action_agent)
# PI policy
action = last_action - np.asarray(action)
# execute action a_t and observe reward r_t and observe next state s_{t+1}
next_state, reward, reward_sep, done = env.step_Preward(action, (last_action-action))
if done:
print("finished")
action_list.append(action)
state_list.append(next_state)
last_action = np.copy(action)
state = next_state
fig, axs = plt.subplots(1, 2, figsize=(13,4))
# lb = axs[0].plot(range(len(action_list)), [0.95]*len(action_list), linestyle='--', dashes=(5, 10), color='g', label='lower bound')
# ub = axs[0].plot(range(len(action_list)), [1.05]*len(action_list), linestyle='--', dashes=(5, 10), color='r', label='upper bound')
for idx,i in enumerate([2,5,8]): #[2,5,10]
dps = axs[0].plot(range(len(action_list)), np.array(state_list)[:len(action_list),i], '-.', label = f'DDPG at {injection_bus[i]+1}', linewidth=2,color=color_set[idx])
dpa = axs[1].plot(range(len(action_list)), np.array(action_list)[:,i], '-.', label = f'DDPG at {injection_bus[i]+1}', linewidth=2,color=color_set[idx])
ddpg_plt.append(dps)
ddpg_a_plt.append(dpa)
state = env.reset(seed)
episode_reward = 0
last_action = np.zeros((num_agent,1))
action_list=[]
state_list =[]
state_list.append(state)
for step in range(100):
action = []
for i in range(num_agent):
# sample action according to the current policy and exploration noise
action_agent = safe_ddpg_agent_list[i].policy_net.get_action(np.asarray([state[i]]))#+np.random.normal(0, 0.05)
# action_agent = (np.maximum(state[i]-1.05, 0)-np.maximum(0.95-state[i], 0)).reshape((1,))*2
action_agent = np.clip(action_agent, -max_ac, max_ac)
action.append(action_agent)
# PI policy
action = last_action - np.asarray(action)
# execute action a_t and observe reward r_t and observe next state s_{t+1}
next_state, reward, reward_sep, done = env.step_Preward(action, (last_action-action))
if done:
print("finished")
action_list.append(action)
state_list.append(next_state)
last_action = np.copy(action)
state = next_state
safe_name = []
for idx,i in enumerate([2,5,8]):
safes=axs[0].plot(range(len(action_list)), np.array(state_list)[:len(action_list),i], '-', label = f'Stable-DDPG at {injection_bus[i]+1}', linewidth=2,color=color_set[idx])
safea=axs[1].plot(range(len(action_list)), np.array(action_list)[:,i], label = f'Stable-DDPG at {injection_bus[i]+1}', linewidth=2,color=color_set[idx])
safe_plt.append(safes)
safe_name.append(f'stable-DDPG at {injection_bus[i]}')
safe_a_plt.append(safea)
# leg1 = plt.legend(safe_a_plt, safe_name, loc='lower left')
# axs[0].legend(loc='lower left', prop={"size":20})
# axs[1].legend(loc='lower left', prop={"size":20})
box = axs[0].get_position()
axs[0].set_position([box.x0-0.05*box.width, box.y0+0.1*box.height,
box.width* 0.87, box.height])
box = axs[1].get_position()
axs[1].set_position([box.x0-0.12*box.width, box.y0+0.1*box.height,
box.width* 0.87, box.height])
axs[0].legend(loc='right', bbox_to_anchor=(2.92, 0.4),
fancybox=True, shadow=True, ncol=1, prop={"size":13})
axs[0].set_xlabel('Iteretion Steps')
axs[1].set_xlabel('Iteretion Steps')
axs[0].set_ylabel('Bus Voltage [p.u.]')
axs[1].set_ylabel('q Injection [MVar]')
plt.show()
def plot_action_selcted(selected=[1,5,9]):
color_set = ['#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', '#9467bd', '#8c564b']
# if ph_num ==3:
# injection_bus = [3,6,5,2,4,9,12,10,11,1,8,7]
fig, axs = plt.subplots(1, 3, figsize=(12,4))
plt.gcf().subplots_adjust(bottom=0.18)
for indx,i in enumerate(selected):
# plot policy
N = 40
s_array = np.zeros(N,)
a_array_baseline = np.zeros(N,)
safe_ddpg_a_array = np.zeros((N,ph_num))
for j in range(N):
if ph_num == 1:
state = np.array([0.8+0.01*j])
s_array[j] = state
else:
state = np.resize(np.array([0.8+0.01*j]),(3))
s_array[j] = state[0]
if ph_num == 3:
safe_ddpg_action = np.zeros(3)
phases = env.injection_bus[env.injection_bus_str[i]]
id = get_id(phases)
action_tmp = safe_ddpg_agent_list[i].policy_net.get_action(np.asarray([state[id]]))
action_tmp = action_tmp.reshape(len(id),)
for p in range(len(phases)):
safe_ddpg_action[id[p]]=action_tmp[p]
else:
safe_ddpg_action = safe_ddpg_agent_list[i].policy_net.get_action(np.asarray([state]))
safe_ddpg_action = np.clip(safe_ddpg_action, -max_ac, max_ac)
safe_ddpg_a_array[j] = -safe_ddpg_action
if ph_num == 1:
axs[indx].plot(s_array, safe_ddpg_a_array, label = f'Stable-DDPG', linewidth=2)
else:
phases = env.injection_bus[env.injection_bus_str[i]]
id = get_id(phases)
for cnt, ph_id in enumerate(id):
clr = color_set[ph_id]
axs[indx].plot(s_array, safe_ddpg_a_array[:,ph_id], label = f'Stable-DDPG-{phases[cnt]}', linewidth=2, color=clr)
for indx,i in enumerate(selected):
# plot policy
N = 40
s_array = np.zeros(N,)
a_array_baseline = np.zeros(N,)
linear_a_array = np.zeros((N,ph_num))
for j in range(N):
if ph_num == 1:
state = np.array([0.8+0.01*j])
s_array[j] = state
else:
state = np.resize(np.array([0.8+0.01*j]),(3))
s_array[j] = state[0]
if ph_num == 3:
safe_ddpg_action = np.zeros(3)
phases = env.injection_bus[env.injection_bus_str[i]]
id = get_id(phases)
action_tmp = linear_agent_list[i].policy_net.get_action(np.asarray([state[id]]))
action_tmp = action_tmp.reshape(len(id),)
for p in range(len(phases)):
safe_ddpg_action[id[p]]=action_tmp[p]
else:
safe_ddpg_action = linear_agent_list[i].policy_net.get_action(np.asarray([state]))
safe_ddpg_action = np.clip(safe_ddpg_action, -max_ac, max_ac)
linear_a_array[j] = -safe_ddpg_action
if ph_num == 1:
axs[indx].plot(s_array, linear_a_array, ':', label = f'Linear', linewidth=2, color='r')
else:
phases = env.injection_bus[env.injection_bus_str[i]]
id = get_id(phases)
axs[indx].plot(s_array, linear_a_array[:,id[0]], ':', label = f'Linear', linewidth=2, color='r')
for indx,i in enumerate(selected):
# plot policy
N = 40
s_array = np.zeros(N,)
a_array_baseline = np.zeros(N,)
ddpg_a_array = np.zeros((N,ph_num))
# safe_ddpg_a_array = np.zeros(N,)
for j in range(N):
if ph_num == 1:
state = np.array([0.8+0.01*j])
s_array[j] = state
else:
state = np.resize(np.array([0.8+0.01*j]),(3))
s_array[j] = state[0]
# action_baseline = (np.maximum(state[0]-1.03, 0)-np.maximum(0.97-state[0], 0)).reshape((1,))*slope
if ph_num == 3:
ddpg_action = np.zeros(3)
phases = env.injection_bus[env.injection_bus_str[i]]
id = get_id(phases)
action_tmp = ddpg_agent_list[i].policy_net.get_action(np.asarray([state[id]]))
action_tmp = action_tmp.reshape(len(id),)
for p in range(len(phases)):
ddpg_action[id[p]]=action_tmp[p]
else:
ddpg_action = ddpg_agent_list[i].policy_net.get_action(np.asarray([state]))
ddpg_action = np.clip(ddpg_action, -max_ac, max_ac)
# action_baseline = np.clip(action_baseline, -max_ac, max_ac)
# a_array_baseline[j] = -action_baseline[0]
ddpg_a_array[j] = -ddpg_action
if indx != 0:
axs[indx].get_yaxis().set_visible(False)
axs[indx].set_title(f'Bus {injection_bus[i]+1}', size=20)
if ph_num==1:
axs[indx].plot(s_array, ddpg_a_array, '--', label = f'DDPG', linewidth=2)
else:
phases = env.injection_bus[env.injection_bus_str[i]]
id = get_id(phases)
for cnt, ph_id in enumerate(id):
clr = color_set[ph_id+3]
axs[indx].plot(s_array, ddpg_a_array[:,ph_id], '--', label = f'DDPG-{phases[cnt]}', linewidth=2, color=clr)
# axs[indx].plot(s_array, a_array_baseline, ':', label = 'Linear',color='r', linewidth=2)
# axs[indx].legend(loc='lower left', prop={"size":13})
axs[indx].set_xlabel('voltage magnitude [p.u.]', size=18)
axs[indx].set_ylabel(f'q change [MVar]', size=18)
box = axs[0].get_position()
axs[0].set_position([box.x0-0.15*box.width, box.y0,
box.width* 0.9, box.height])
box = axs[1].get_position()
axs[1].set_position([box.x0-0.19*box.width, box.y0,
box.width* 0.9, box.height])
box = axs[2].get_position()
axs[2].set_position([box.x0-0.22*box.width, box.y0,
box.width* 0.9, box.height])
axs[0].legend(loc='right', bbox_to_anchor=(4.45, 0.4),
fancybox=True, shadow=True, ncol=1, prop={"size":13})
plt.show()
def get_id(phases):
if phases == 'abc':
id = [0,1,2]
elif phases == 'ab':
id = [0,1]
elif phases == 'ac':
id = [0,2]
elif phases == 'bc':
id = [1,2]
elif phases == 'a':
id = [0]
elif phases == 'b':
id = [1]
elif phases == 'c':
id = [2]
else:
print("error!")
exit(0)
return id
if __name__ == "__main__":
# plot_traj_1b_mt()
# print("test")
# test_suc_rate('safe-ddpg',step_num=100) #safe-ddpg
# test_suc_rate('linear',step_num=100)
test_suc_rate('ddpg',step_num=100)
# plot_bar_avg(len(injection_bus))
# plot_bar(len(injection_bus))
# test_suc_rate('linear')
# plot_action_selcted()
# plot_bar(len(injection_bus))
# plot_traj_123(19)
# plot_action_selcted([1,4,9]) #13b3p
# plot_action_selcted([2,4,10]) #13b3p
# plot_action_selcted([2,5,8]) #123b
# plot_action_selcted([0,1,2])
# plot_traj()