-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparameters.py
More file actions
27 lines (22 loc) · 715 Bytes
/
Copy pathparameters.py
File metadata and controls
27 lines (22 loc) · 715 Bytes
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
#Simulation Parameters
time_step = 0.01
num_steps = 100
default_k = 0.001
#Experiment Parameters
initial_temps = [240, 260, 290, 310, 340, 360]
Kp_values = [0.1, 0.5, 1.0, 2.0, 5.0, 10.0]
Ki_values = [0.5, 1.0, 2.0, 5.0, 10.0, 20.0]
Kd_values = [0.01, 0.05, 0.1, 0.2, 0.5]
PID_Kp = 1.0
PID_Ki = 2.0
#Plot Parameters
RESULTS_DIR = "results"
PLOT_DIR = f"{RESULTS_DIR}/plots"
BASIN_DIR = f"{PLOT_DIR}/basin_dynamics"
SETPOINT_DIR = f"{PLOT_DIR}/setpoint_tracking"
PHASE_DIR = f"{PLOT_DIR}/phase_portraits"
# Data Parameters
DATA_DIR = f"{RESULTS_DIR}/data"
BASIN_DATA_DIR = f"{DATA_DIR}/basin_dynamics"
SETPOINT_DATA_DIR = f"{DATA_DIR}/setpoint_tracking"
DISTURBANCE_DATA_DIR = f"{DATA_DIR}/disturbance_response"