# YAMMS model parameters # ====================== ### Model global parameters ###------------------------ # Model time step (s) timestep = 5000 # Enable/disable Haze production process haze_production = T # Enable/disable Haze coagulation process haze_coagulation = T # Coagulation interactions, a combination of: # 0 - no interactions (same as haze_coagulation == F) # 1 - SS interactions # 2 - SF interactions # 4 - FF interactions. # (for example: 5 = 4+1 --> SS and FF coagulation only) haze_coag_interactions = 7 # Enable/disable Haze sedimentation process haze_sedimentation = T # Disable Fiadero correction for sedimentation process no_fiadero = F # Fiadero correction minimum ratio threshold fiadero_min_ratio = 0.1 # Fiadero correction maximum ratio threshold fiadero_max_ratio = 10. # Force settling velocity to M0 wsed_m0 = F # Force settling velocity to M3 wsed_m3 = F # Enable/disable clouds microphysics clouds_microphysics = F # Enable/disable clouds sedimentation process # (automatically set to F if clouds microphysics is not enabled) clouds_sedimentation = T # Enable/disable clouds nucleation and condensation processes # (automatically set to F if clouds microphysics is not enabled) clouds_nuc_cond = T # Condensible species configuration file # (not needed if clouds microphysics is not enabled) specie_cfg = /home/burgalat/test_sedim/inputs/mp2m_species.cfg ### Aerosols related parameters ###---------------------------- # Aerosols density (kg.m-3) rho_aer = 1000. # Monomer radius (m) rm = 6.6e-8 # Fractal dimension of the fractal mode df = 2. # Aerosols production pressure level (Pa) p_prod = 1.0 # Aerosols production rate (kg.m-2.s-1) tx_prod = 3.5e-13 # Characteristic radius for production scheme rc_prod = 20e-9 # Aerosols electric charging (e-.m-1) # (not used, only set as a reminder !) ne = -15d6 ###-------------------------- ### Planet related parameters (currently Venus for sedim, Titan for other params) ###-------------------------- # Planet radius (m) planet_radius = 2575000. # Air molecule radius (m) air_radius = 1.75e-10 # Air mean molar mass (kg.mol-1) air_molarmass = 28.e-3 ## Planet acceleration of gravity at the ground (m.s-2) g0 = 1.35 ###--------------------------