Changeset 3100 for trunk/LMDZ.GENERIC/deftank
- Timestamp:
- Oct 25, 2023, 10:34:54 AM (15 months ago)
- Location:
- trunk/LMDZ.GENERIC/deftank
- Files:
-
- 1 added
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/deftank/callphys.earthslab
r3099 r3100 4 4 tracer = .true. 5 5 # Diurnal cycle ? if diurnal=false, diurnally averaged solar heating 6 diurnal = . false.6 diurnal = .true. 7 7 # Seasonal cycle ? if season=false, Ls stays constant, to value set in "start" 8 8 season = .true. … … 17 17 # Test energy conservation of model physics ? 18 18 enertest = .false. 19 # Check to see if cpp, mugaz values used match gas mixture defined in gases.def (recommended) ? 20 check_cpp_match=.true. 19 # check if cpp and mugaz from start.nc are consistent with values computed by comp_cpp_mugaz with gases.def 20 check_cpp_match = .false. 21 # Check if physics inputs and outputs are ok 22 check_physics_inputs = .true. 23 check_physics_outputs = .true. 24 25 ## Directory where external input files are 26 ## ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 27 datadir = datadir 21 28 22 29 ## Radiative transfer options … … 26 33 # the rad. transfer is computed every "iradia" physical timestep 27 34 iradia = 6 35 # Use blackbody for stellar spectrum ? 36 stelbbody = .false. 37 # Stellar blackbody temperature ? 38 stelTbb = 2000.000 28 39 # call multilayer correlated-k radiative transfer ? 29 40 corrk = .true. 30 # Include continuum absorption in radiative transfer (note CO2 is treated separately) ?31 continuum = .true.32 41 # folder in which correlated-k data is stored ? 33 corrkdir = N2CO2poor_H2Ovar 42 corrkdir = Earth_JL13_extend 43 # corrkdir = Earth_110-710K 44 # corrkdir = N2CO2poor_H2Ovar 45 # corrkdir = megaCO2 46 # corrkdir = null 34 47 # call visible gaseous absorption in radiative transfer ? 35 48 callgasvis = .true. 49 # call continuum in radiative transfer ? 50 Continuum = .true. 36 51 # Include Rayleigh scattering in the visible ? 37 52 rayleigh = .true. 53 # Uniform absorption coefficient in radiative transfer? 54 graybody = .false. 55 # Constant absorption coefficient in visible 56 # (in m^2/kg; only if graybody=true): 57 # tau_surf= kappa*P/g 58 kappa_VI = 1.e-4 59 # Constant absorption coefficient in IR 60 # (in m^2/kg; only if graybody=true): 61 kappa_IR = 5.e-1 62 # Use Newtonian cooling in place of radiative transfer ? 63 newtonian = .false. 64 # Radiative timescale for Newtonian cooling ? [only if newtonian = T] 65 tau_relax = 30.00000 66 # Test physics timescale in 1D ? 67 testradtimes = .false. 38 68 # Characteristic planetary equilibrium (black body) temperature 39 69 # This is used only in the aerosol radiative transfer setup. (see aerave.F) 40 70 tplanet = 215. 41 # Output spectral OLR in 3D?71 # Output spectral OLR in 1D/3D? 42 72 specOLR = .false. 43 73 # Output global radiative balance in file 'rad_bal.out' - slow for 1D!! 44 meanOLR = . true.74 meanOLR = .false. 45 75 # Variable gas species: Radiatively active ? 46 76 varactive = .true. 47 77 # Variable gas species: Fixed vertical distribution ? 78 # (not to be used in time integration mode) 48 79 varfixed = .false. 49 80 # Variable gas species: Saturation percentage value at ground ? 50 satval = 0.0 81 satval = .8 82 # Use fixed vertical profile, 1 step, no iteration ? 83 kastprof = .false. 84 # Remove lower boundary (e.g. for gas giant sims) 85 noradsurf = .false. 51 86 52 87 ## Star type … … 60 95 # startype = 3 GJ644 61 96 # startype = 4 HD128167 62 # startype = 9 TRAPPIST-163 # startype = 10 Proxima Centauri64 97 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 65 98 # Stellar flux at 1 AU. Examples: … … 67 100 # 1024.5 W m-2 Sol today x 0.75 = weak early Sun 68 101 # 18.462 W m-2 The feeble Gl581 102 # 19.960 W m-2 Gl581 with e=0.38 orbital average 69 103 Fat1AU = 1366.0 104 70 105 71 106 ## Tracer and aerosol options 72 107 ## ~~~~~~~~~~~~~~~~~~~~~~~~~~ 73 # Gravitational sedimentation of tracers ( KEEP FALSE FOR NOW) ?74 sedimentation = . false.108 # Gravitational sedimentation of tracers (just H2O ice for now) ? 109 sedimentation = .true. 75 110 76 111 ## Other physics options … … 92 127 ## ~~~~~~~~~~~~~~~~~~~~~~~~~~ 93 128 # Number of radiatively active aerosols 94 naerkind=1 129 naerkind = 1 130 # Varying H2O cloud fraction? 131 CLFvarying = .true. 132 # H2O cloud fraction? 133 CLFfixval = 1. 134 # number mixing ratio of CO2 ice particles 135 Nmix_co2 = 1.e5 136 # basic dust opacity 137 dusttau = 0.0 138 # water cloud pressure level (norm. by psurf) 139 cloudlvl = 0.0 140 # atm mass update due to tracer evaporation/condensation? 141 mass_redistrib = .true. 95 142 # Radiatively active CO2 aerosol? 96 143 aeroco2 = .false. … … 101 148 # Fixed water aerosol distribution? 102 149 aerofixh2o = .false. 103 # basic dust opacity 104 dusttau = 0.0 105 # Varying H2O cloud fraction? 106 CLFvarying = .true. 107 # H2O cloud fraction if fixed? 108 CLFfixval = 0.5 109 # fixed radii for cloud particles? 110 radfixed=.false. 111 # number mixing ratio of CO2 ice particles 112 Nmix_co2 = 100000. 150 # Radiatively active sulfur aersol? 151 aeroh2so4 = .false. 152 # fixed radii for h2o cloud particles? 153 radfixed=.true. 113 154 # number mixing ratio of water particles (for rafixed=.false.) 114 Nmix_h2o = 1.e7155 Nmix_h2o = 4e6 115 156 # number mixing ratio of water ice particles (for rafixed=.false.) 116 Nmix_h2o_ice = 5.e5117 # radius of H2O water particles (for rafixed=.true.): 118 rad_h2o=1 0.e-6157 Nmix_h2o_ice = 2.e4 158 # radius of H2O water particles (for rafixed=.true.): (CHANGED FROM 10 TO 12 AFTER BENJAMIN) 159 rad_h2o=12.e-6 119 160 # radius of H2O ice particles (for rafixed=.true.): 120 161 rad_h2o_ice=35.e-6 121 # atm mass update due to tracer evaporation/condensation?122 mass_redistrib = .false.123 162 124 163 ## Water options … … 130 169 # Model water precipitation (including coagulation etc.) 131 170 waterrain = .true. 171 # Moist adjustment 172 moistadjustment = .true. 132 173 # Use simple precipitation scheme? 133 174 precip_scheme=4 134 175 # multiplicative constant in Boucher 95 precip scheme 135 Cboucher= 1.136 # WATER:hydrology ?176 Cboucher=0.6 177 # Include hydrology ? 137 178 hydrology = .true. 138 # Spectral Dependant Albedo ? 139 albedo_spectral_mode=.false. 140 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 141 # If albedo_spectral_mode=.true., albedosnow becomes the 0.5 micron snow albedo. 142 # 143 # albedosnow = 0.95 (0.73 Sun-integrated) for fresh snow. 144 # = 0.50 (0.39 Sun-integrated) for dirty snow. 145 # = 0.78 (0.60 Sun-integrated) for 'realistic' snow. 146 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 179 # active runoff ? 180 activerunoff = .true. 147 181 # H2O snow (and ice) albedo ? 148 albedosnow = 0.6 0182 albedosnow = 0.65 149 183 # Maximum sea ice thickness ? 150 184 maxicethick = 10. … … 153 187 # Evolve surface water sources ? 154 188 sourceevol = .false. 189 # compute lightning rate ? 190 compute_lightning = .true. 155 191 156 192 ## CO2 options 157 193 ## ~~~~~~~~~~~ 158 # Co2 ice albedo ?159 albedoco2ice = 0.5160 # gas is non-ideal CO2 ?161 nonideal = .false.162 194 # call CO2 condensation ? 163 195 co2cond = .false. … … 165 197 nearco2cond = .false. 166 198 199 ## Subsurface options 200 ## ~~~~~~~~~~~~~~~~~~ 201 # Number of subsurface layers (For Earth 14 is OK; for Mars 18) 202 nsoilmx=14 203 # Thickness of topmost soil layer (m) (For Earth 0.03 is OK; for Mars 0.0002) 204 lay1_soil=0.03 205 #Coefficient for soil layer thickness distribution (default is 2) 206 alpha_soil=2 207 208 ## Ocean options 209 ## ~~~~~~~~~~~~~ 210 # Model slab-ocean (Main flag for slab ocean) 211 ok_slab_ocean = .true. 212 # The following flags can only be set to true if ok_slab_ocean is true 213 # Ekman transport 214 slab_ekman = .true. 215 # Ekman zonal advection 216 slab_ekman_zonadv = .true. 217 # Horizontal diffusion (default coef_hdiff=25000., can be changed) 218 slab_hdiff = .true. 219 # Slab-ocean timestep (in physics timesteps) 220 cpl_pas = 1 221 # sea-ice 222 #ok_slab_sic = .true. 223 # Gent-McWilliams Scheme (can only be true if slab_ekman is true) 224 slab_gm = .true. 225 # Slab convective adjustment? 0 - no, 1 - yes 226 slab_cadj = 1 227 # H2O snow (and ice) albedo for sea ? 228 #albedosnowsea = 0.65 229
Note: See TracChangeset
for help on using the changeset viewer.