[715] | 1 | ## Orbit / general options |
---|
| 2 | ## ~~~~~~~~~~~~~~~~~~~~~~~ |
---|
| 3 | # Run with or without tracer transport ? |
---|
| 4 | tracer = .false. |
---|
| 5 | # Diurnal cycle ? if diurnal=false, diurnally averaged solar heating |
---|
| 6 | diurnal = .false. |
---|
| 7 | # Check to see if cpp, mugaz values used match gas mixture defined in gases.def (recommended) ? |
---|
| 8 | check_cpp_match = .false. |
---|
| 9 | |
---|
| 10 | ## Radiative transfer options |
---|
| 11 | ## ~~~~~~~~~~~~~~~~~~~~~~~~~~ |
---|
| 12 | # call radiative transfer? |
---|
| 13 | callrad = .true. |
---|
| 14 | # call multilayer correlated-k radiative transfer ? |
---|
| 15 | corrk = .true. |
---|
| 16 | # Include continuum absorption in radiative transfer (note CO2 is treated separately) ? |
---|
| 17 | Continuum = .true. |
---|
| 18 | # folder in which correlated-k data is stored ? |
---|
| 19 | corrkdir = N2_CO2step_H2Ovar/1E3ppmCO2 |
---|
| 20 | # call visible gaseous absorption in radiative transfer ? |
---|
| 21 | callgasvis = .true. |
---|
| 22 | # Include Rayleigh scattering in the visible ? |
---|
| 23 | rayleigh = .true. |
---|
| 24 | # Characteristic planetary equilibrium (black body) temperature |
---|
| 25 | # This is used only in the aerosol radiative transfer setup. (see aerave.F) |
---|
| 26 | tplanet = 215. |
---|
| 27 | # Output spectral OLR in 1D/3D? |
---|
| 28 | specOLR = .true. |
---|
| 29 | # Variable gas species: Radiatively active ? |
---|
| 30 | varactive = .false. |
---|
| 31 | # Variable gas species: Fixed vertical distribution ? |
---|
| 32 | varfixed = .true. |
---|
| 33 | # Variable gas species: Saturation percentage value at ground ? |
---|
| 34 | satval = 0.0 |
---|
| 35 | # Use fixed vertical profile, 1 step, no iteration ? |
---|
| 36 | kastprof = .true. |
---|
| 37 | # Remove lower boundary (e.g. for gas giant sims) |
---|
| 38 | noradsurf = .false. |
---|
| 39 | |
---|
| 40 | ## Star type |
---|
| 41 | ## ~~~~~~~~~ |
---|
| 42 | startype = 1 |
---|
| 43 | # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
---|
| 44 | # The choices are: |
---|
| 45 | # |
---|
| 46 | # startype = 1 Sol (G2V-class main sequence) |
---|
| 47 | # startype = 2 Ad Leo (M-class, synthetic) |
---|
| 48 | # startype = 3 GJ644 |
---|
| 49 | # startype = 4 HD128167 |
---|
| 50 | # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
---|
| 51 | # Stellar flux at 1 AU. Examples: |
---|
| 52 | # 1366.0 W m-2 Sol today |
---|
| 53 | # 1024.5 W m-2 Sol today x 0.75 = weak Sun 3.8 GYa |
---|
| 54 | # 18.462 W m-2 The feeble GJ581 |
---|
| 55 | # 19.960 W m-2 GJ581 with e=0.38 orbital average |
---|
| 56 | Fat1AU = 956.0 |
---|
| 57 | |
---|
| 58 | ################################## |
---|
| 59 | ## extra non-standard definitions |
---|
| 60 | ################################## |
---|
| 61 | |
---|
| 62 | ## Tracer and aerosol options |
---|
| 63 | ## ~~~~~~~~~~~~~~~~~~~~~~~~~~ |
---|
| 64 | # Fixed aerosol distributions? |
---|
| 65 | aerofixed = .true. |
---|
| 66 | # Varying H2O cloud fraction? |
---|
| 67 | CLFvarying = .false. |
---|
| 68 | # H2O cloud fraction? |
---|
| 69 | CLFfixval = 1.0 |
---|
| 70 | # number mixing ratio of CO2 ice particles |
---|
| 71 | Nmix_co2 = 100000. |
---|
| 72 | # number mixing ratio of water ice particles |
---|
| 73 | Nmix_h2o = 100000. |
---|
| 74 | # basic dust opacity |
---|
| 75 | dusttau = 0.0 |
---|
| 76 | # water cloud pressure level (norm. by psurf) |
---|
| 77 | cloudlvl = 0.0 |
---|
| 78 | |
---|