36 lines
967 B
Python
36 lines
967 B
Python
# BALLOON
|
|
m_pl = 1728 # payload mass in [kg] herumspielen
|
|
m_film = 1897 # mass balloon film in [kg]
|
|
m_gas = 600 # lifting gas mass in [kg] herumspielen
|
|
V_design = 1120497.6 # maximum fillable balloon volume in [m^3]
|
|
L_goreDesign = 1.914 * V_design ** (1/3)
|
|
|
|
# THERMO-OPTICAL
|
|
alpha_VIS = 0.024
|
|
r_VIS = 0.06
|
|
tau_VIS = 0.916
|
|
epsilon = 0.1
|
|
alpha_IR = 0.1
|
|
tau_IR = 0.86
|
|
r_IR = 0.04
|
|
|
|
c_f = 2092 # [J/(kg*K)]
|
|
|
|
epsilon_ground = 0.9
|
|
Albedo = 0.1
|
|
T_ground = 288.15
|
|
|
|
# DRAG
|
|
#c_d = 0.47 # drag coefficient balloon (spherical) [-]
|
|
|
|
c_virt = 0.37
|
|
|
|
# SIMULATION
|
|
t_end = 100000 #7500 #5000 # maximum simulation time in [s]
|
|
dt = 1.0 #0.01 #0.01 # simulation time step in [s]
|
|
start_height = 365.10 # start altitude in [m]
|
|
start_lat = 67.889235 # start latitude in [deg]
|
|
start_lon = 21.082948 # start longitude in [deg]
|
|
start_utc = '2016-07-12 03:17:24.000' # start date and time in UTC
|
|
p_0 = 101325 # sea-level pressure in [Pa]
|