Changeset 3772 for trunk/LMDZ.PLUTO/libf/phypluto/phyetat0_mod.F90
- Timestamp:
- May 21, 2025, 6:37:40 PM (3 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.PLUTO/libf/phypluto/phyetat0_mod.F90
r3736 r3772 3 3 implicit none 4 4 5 real, save :: tab_cntrl_mod(100)6 7 5 integer,save :: nid_start ! NetCDF file identifier for startfi.nc file 8 9 !$OMP THREADPRIVATE(tab_cntrl_mod)10 11 6 12 7 contains … … 26 21 !! 27 22 use comsoil_h, only: nsoilmx,inertiedat 28 use tabfi_mod, only: tabfi 23 use tabfi_mod, only: tabfi,ini_tab_controle_dyn_xios,tab_cntrl_mod 29 24 USE tracer_h, ONLY: noms 30 25 USE surfdat_h, only: phisfi, albedodat, zmea, zstd, zsig, zgam, zthe … … 282 277 !AF24 283 278 endif ! of if (startphy_file) 279 280 call ini_tab_controle_dyn_xios(day_ini) 284 281 ! 285 282 ! close file: … … 289 286 end subroutine phyetat0 290 287 291 292 !======================================================================293 subroutine ini_tab_controle_dyn_xios(idayref)294 295 use comcstfi_mod, only: g, mugaz, omeg, rad, rcp296 use time_phylmdz_mod, only: daysec, dtphys297 use mod_grid_phy_lmdz, only: nbp_lon, nbp_lat, nbp_lev298 299 implicit none300 301 integer*4, intent(in) :: idayref ! date (initial date for this run)302 303 integer :: length, l304 parameter (length = 100)305 real :: tab_cntrl(length) ! run parameters are stored in this array306 307 do l = 1,length308 tab_cntrl(l) = 0.309 enddo310 tab_cntrl(1) = real(nbp_lon)311 tab_cntrl(2) = real(nbp_lat-1)312 tab_cntrl(3) = real(nbp_lev)313 tab_cntrl(4) = real(idayref)314 tab_cntrl(5) = rad315 tab_cntrl(6) = omeg316 tab_cntrl(7) = g317 tab_cntrl(8) = mugaz318 tab_cntrl(9) = rcp319 tab_cntrl(10) = daysec320 tab_cntrl(11) = dtphys321 322 tab_cntrl_mod = tab_cntrl323 324 end subroutine ini_tab_controle_dyn_xios325 326 327 288 end module phyetat0_mod
Note: See TracChangeset
for help on using the changeset viewer.