sane defaults for config

This commit is contained in:
jbruce 2023-01-10 14:07:19 -05:00
parent 78f88ea418
commit 8b39f96d39

View File

@ -116,8 +116,8 @@ stop_integral_windup = True
######################################################################## ########################################################################
# #
# Simulation parameters # Simulation parameters
simulate = False simulate = True
sim_t_env = 255 # deg C sim_t_env = 65 # deg
sim_c_heat = 500.0 # J/K heat capacity of heat element sim_c_heat = 500.0 # J/K heat capacity of heat element
sim_c_oven = 5000.0 # J/K heat capacity of oven sim_c_oven = 5000.0 # J/K heat capacity of oven
sim_p_heat = 5450.0 # W heating power of oven sim_p_heat = 5450.0 # W heating power of oven
@ -125,7 +125,10 @@ sim_R_o_nocool = 0.5 # K/W thermal resistance oven -> environment
sim_R_o_cool = 0.05 # K/W " with cooling sim_R_o_cool = 0.05 # K/W " with cooling
sim_R_ho_noair = 0.1 # K/W thermal resistance heat element -> oven sim_R_ho_noair = 0.1 # K/W thermal resistance heat element -> oven
sim_R_ho_air = 0.05 # K/W " with internal air circulation sim_R_ho_air = 0.05 # K/W " with internal air circulation
sim_speedup_factor = 1000
# if you want simulations to happen faster than real time, this can be
# set as high as 1000 to speed simulations up by 1000 times.
sim_speedup_factor = 1
######################################################################## ########################################################################