Changeset 3749 for trunk/LMDZ.PLUTO/libf/phypluto/inifis_mod.F90
- Timestamp:
- Apr 30, 2025, 5:54:41 PM (8 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.PLUTO/libf/phypluto/inifis_mod.F90
r3684 r3749 18 18 use comgeomfi_h, only: totarea, totarea_planet 19 19 use comsoil_h, only: ini_comsoil_h, nsoilmx, lay1_soil, alpha_soil 20 use time_phylmdz_mod, only: ecritphy,day_step,iphysiq, &20 use time_phylmdz_mod, only: diagfi_output_rate, & 21 21 init_time, daysec, dtphys 22 22 use comcstfi_mod, only: rad, cpp, g, r, rcp, & … … 83 83 REAL SSUM 84 84 85 ! deprecated parameter 85 ! deprecated parameters 86 REAL :: ecritphy ! to check that this obsolete flag is no longer used... 86 87 logical aerohaze 87 88 … … 104 105 #endif 105 106 107 106 108 ! read in some parameters from "run.def" for physics, 107 109 ! or shared between dynamics and physics. 110 ecritphy=-666 ! dummy default value 108 111 call getin_p("ecritphy",ecritphy) ! frequency of outputs in physics, 109 112 ! in dynamical steps 110 call getin_p("day_step",day_step) ! number of dynamical steps per day 111 call getin_p("iphysiq",iphysiq) ! call physics every iphysiq dyn step 113 if (ecritphy/=-666) then 114 call abort_physic(rname, & 115 "Error: parameter ecritphy is obsolete! Remove it! "//& 116 "And use diagfi_output_rate instead",1) 117 endif 112 118 113 119 ! do we read a startphy.nc file? (default: .true.) … … 164 170 call getin_p("tracer",tracer) 165 171 if (is_master) write(*,*) trim(rname)//": tracer = ",tracer 172 173 if (is_master) write(*,*) trim(rname)//& 174 ": Output rate for diagfi.nc file (in physics steps) ?" 175 diagfi_output_rate=24 !default value 176 call getin_p("diagfi_output_rate",diagfi_output_rate) 177 if (is_master) write(*,*) trim(rname)//": diagfi_output_rate = ",& 178 diagfi_output_rate 166 179 167 180 if (is_master) write(*,*) trim(rname)//&
Note: See TracChangeset
for help on using the changeset viewer.