forked from sogno-platform/covee
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cvxpy version of the control working
Signed-off-by: Edoardo De Din <ededin@eonerc.rwth-aachen.de>
- Loading branch information
1 parent
28fcaf3
commit e07a399
Showing
21 changed files
with
237 additions
and
761 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"EXT_PORT_COVEE" : 7071, "__comment__": "Only for the communication", | ||
"EXT_PORT_POWERFLOW" : 7070, "__comment__": "Only for the communication", | ||
"EXT_MQTT" : "no", "__comment__": "Only for the communication", | ||
|
||
"CONTROL_MODULE" : "Quadratic_Control_Centralized_CVXPY", "__comment__": "in control_strategies_folder", | ||
"CASE_MODULE" : "case30", | ||
|
||
"CONTROL_DATA" : { | ||
"VMAX" : 1.05, | ||
"VMIN" : 0.95, | ||
"control_variables" : {"DG":["reactive_power"], "ESS":[]}, | ||
"active_nodes": [3,4,6,8,9,11,12,13,17,18,19,20,21,22,25,26,29], "__comment__": "number of active DGs", | ||
"active_ESS": [3,4,6,8,9,10,17,18,19,20,21,22,25,26,29], "__comment__": "number of active ESSs", | ||
|
||
"v_ref" : 0.0, "__comment__": "only for the version with CVXPY" , | ||
"M" : 1e1, "__comment__": "value for the relaxation of the constraints, only for the version with CVXPY" , | ||
"Weights_CVXPY" : {"DG":{"reactive_power":1.0, "active_power":1.0}, "ESS":{"active_power":1.0}} | ||
}, | ||
|
||
"POWERFLOW_DATA" : { | ||
"PROFILE" : {"variable" : {"GEN_PROFILE": "PV_profile.csv", "LOAD_PROFILE": "Load_profile.csv"} , | ||
"fix" : {"GEN_PROFILE": 1.0, "LOAD_PROFILE": 0.2, "ITERATIONS": 50} }, | ||
"TYPE_PROFILE" : "variable", "__comment__": "with fix, the powerflow considers fixed generation and load profiles" | ||
|
||
}, | ||
|
||
"STATE_ESTIMATION": "no", "__comment__": "with yes, the control algorithm considers the full set of voltage nodes, as if the state estimation would be integrated / Not implemented yet" , | ||
|
||
"SAVE_PATH" : "csv_files/results", | ||
"PLOT_PATH": "csv_files/plots" | ||
} |
Oops, something went wrong.