Changeset 3773 for trunk/LMDZ.GENERIC/libf/phystd/phyetat0_mod.F90
- Timestamp:
- May 21, 2025, 6:37:41 PM (5 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/phyetat0_mod.F90
r3552 r3773 22 22 use write_field_phy, only: Writefield_phy 23 23 !! 24 use tabfi_mod, only: tabfi 24 use tabfi_mod, only: tabfi,ini_tab_controle_dyn_xios 25 25 USE tracer_h, ONLY: noms, igcm_h2o_vap 26 26 USE radinc_h, ONLY: L_NSPECTV … … 485 485 endif 486 486 endif ! of if (startphy_file) 487 488 call ini_tab_controle_dyn_xios(day_ini) 489 490 487 491 ! 488 492 ! close file: … … 492 496 end subroutine phyetat0 493 497 494 !======================================================================495 subroutine ini_tab_controle_dyn_xios(idayref)496 497 use comcstfi_mod, only: g, mugaz, omeg, rad, rcp498 use time_phylmdz_mod, only: daysec, dtphys499 use mod_grid_phy_lmdz, only: nbp_lon, nbp_lat, nbp_lev500 501 implicit none502 503 integer*4, intent(in) :: idayref ! date (initial date for this run)504 505 integer :: length, l506 parameter (length = 100)507 real :: tab_cntrl(length) ! run parameters are stored in this array508 509 do l = 1,length510 tab_cntrl(l) = 0.511 enddo512 tab_cntrl(1) = real(nbp_lon)513 tab_cntrl(2) = real(nbp_lat-1)514 tab_cntrl(3) = real(nbp_lev)515 tab_cntrl(4) = real(idayref)516 tab_cntrl(5) = rad517 tab_cntrl(6) = omeg518 tab_cntrl(7) = g519 tab_cntrl(8) = mugaz520 tab_cntrl(9) = rcp521 tab_cntrl(10) = daysec522 tab_cntrl(11) = dtphys523 524 tab_cntrl_mod = tab_cntrl525 526 end subroutine ini_tab_controle_dyn_xios527 528 498 end module phyetat0_mod
Note: See TracChangeset
for help on using the changeset viewer.