Skip to content

Commit 5db08d4

Browse files
update essential documents and code
1 parent 233e328 commit 5db08d4

7 files changed

Lines changed: 544246 additions & 0 deletions

File tree

MIP_DQN.py

Lines changed: 499 additions & 0 deletions
Large diffs are not rendered by default.

Parameters.py

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
battery_parameters={
2+
'capacity':500,# kw
3+
'max_charge':100, # kw
4+
'max_discharge':100, #kw
5+
'efficiency':0.9,
6+
'degradation':0, #euro/kw
7+
'max_soc':0.8,
8+
'min_soc':0.2,
9+
'initial_capacity':0.2}
10+
11+
12+
dg_parameters={
13+
'gen_1':{'a':0.0034
14+
,'b': 3
15+
,'c':30
16+
,'d': 0.03,'e':4.2,'f': 0.031,'power_output_max':150,'power_output_min':0,'heat_output_max':None,'heat_output_min':None,\
17+
'ramping_up':100,'ramping_down':100,'min_up':2,'min_down':1},
18+
19+
'gen_2':{'a':0.001
20+
,'b': 10
21+
,'c': 40
22+
,'d': 0.03,'e':4.2,'f': 0.031,'power_output_max':375,'power_output_min':0,'heat_output_max':None,'heat_output_min':None,\
23+
'ramping_up':100,'ramping_down':100,'min_up':2,'min_down':1},
24+
25+
'gen_3':{'a':0.001
26+
,'b': 15
27+
,'c': 70
28+
,'d': 0.03,'e':4.2,'f': 0.031,'power_output_max':500,'power_output_min':0,'heat_output_max':None,'heat_output_min':None,\
29+
'ramping_up':200,'ramping_down':200,'min_up':2,'min_down':1}}
30+

0 commit comments

Comments
 (0)