pull/132/head
James Kirikland Garner 2023-01-15 18:50:44 -08:00
commit 0be51e3cbd
1 zmienionych plików z 6 dodań i 3 usunięć

Wyświetl plik

@ -116,8 +116,8 @@ stop_integral_windup = True
########################################################################
#
# Simulation parameters
simulate = False
sim_t_env = 255 # deg C
simulate = True
sim_t_env = 65 # deg
sim_c_heat = 500.0 # J/K heat capacity of heat element
sim_c_oven = 5000.0 # J/K heat capacity 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_ho_noair = 0.1 # K/W thermal resistance heat element -> oven
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
########################################################################