Changeset 3083 for trunk/LMDZ.TITAN/libf/phytitan/inifis_mod.F90
- Timestamp:
- Oct 12, 2023, 10:30:22 AM (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.TITAN/libf/phytitan/inifis_mod.F90
r2366 r3083 194 194 call getin_p("eff_gz", eff_gz) 195 195 write(*,*) "eff_gz = ", eff_gz 196 197 write(*,*) "Nudging of zonal wind to keep the super-rotation" 198 nudging_u = .true. 199 call getin_p("nudging_u", nudging_u) 200 write(*,*) "nudging_u = ", nudging_u 201 202 write(*,*) "Nudging relaxation time (here ~ 1 titanian year in secondes)" 203 nudging_dt = 9.3e8 204 call getin_p("nudging_dt", nudging_dt) 205 write(*,*) "nudging_dt = ", nudging_dt 206 207 write(*,*) "New optics for clouds" 208 opt4clouds = .true. 209 call getin_p("opt4clouds", opt4clouds) 210 write(*,*) "opt4clouds = ", opt4clouds 211 212 write(*,*) "Cloudy fraction in the Clear / Dark column method" 213 Fcloudy = 1.0 214 call getin_p("Fcloudy", Fcloudy) 215 write(*,*) "Fcloudy = ", Fcloudy 216 217 write(*,*) "Adjustment of single scattering albedo for cloudy dropplet" 218 Fssa = 1.0 219 call getin_p("Fssa", Fssa) 220 write(*,*) "Fssa = ", Fssa 221 222 write(*,*) "Adjustment of aerosol properties in the VIS" 223 FHVIS = 1.0 224 call getin_p("FHVIS", FHVIS) 225 write(*,*) "FHVIS = ", FHVIS 226 227 write(*,*) "Adjustment of aerosol properties in the IR" 228 FHIR = 1.0 229 call getin_p("FHIR", FHIR) 230 write(*,*) "FHIR = ", FHIR 231 232 write(*,*) "Infinite tank of CH4 ?" 233 resCH4_inf = .false. 234 call getin_p("resCH4_inf", resCH4_inf) 235 write(*,*) "resCH4_inf = ", resCH4_inf 196 236 197 237 ! sanity check warning
Note: See TracChangeset
for help on using the changeset viewer.