Changeset 3621
- Timestamp:
- Feb 12, 2025, 2:01:14 PM (5 hours ago)
- Location:
- trunk/LMDZ.GENERIC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/changelog.txt
r3515 r3621 1990 1990 controle array stored therein. Remove obsolete unused variables "lmixmin" 1991 1991 and "emin_turb" in the process. 1992 1993 == 12/02/2025 == EM 1994 Follow-up of recent changes in iostart (making 1D restarts) from r3562, 1995 Correspondingly adapt newstart. -
trunk/LMDZ.GENERIC/libf/dynphy_lonlat/phystd/newstart.F
r3576 r3621 30 30 use control_mod, only: day_step, iphysiq, anneeref, planet_type 31 31 use phyredem, only: physdem0, physdem1 32 use iostart, only: open_startphy32 use iostart, only: nid_start, open_startphy 33 33 ! use slab_ice_h, only:noceanmx 34 34 USE ocean_slab_mod, ONLY: nslay … … 445 445 ! tabfi requires that input file be first opened by open_startphy(fichnom) 446 446 fichnom = 'start_archive.nc' 447 call open_startphy(fichnom )447 call open_startphy(fichnom,nid_start) 448 448 call tabfi (ngridmx,nid,Lmodif,tab0,day_ini,lllm,p_rad, 449 449 . p_omeg,p_g,p_cpp,p_mugaz,p_daysec,time) 450 450 else if (choix_1.eq.1) then 451 451 fichnom = 'startfi.nc' 452 call open_startphy(fichnom )452 call open_startphy(fichnom,nid_start) 453 453 Lmodif=1 ! Lmodif set to 1 to allow modifications in phyeta0 454 454 call tabfi (ngridmx,nid_fi,Lmodif,tab0,day_ini,lllm,p_rad, -
trunk/LMDZ.GENERIC/libf/phystd/iostart.F90
r3562 r3621 5 5 INTEGER,SAVE :: nid_start ! NetCDF file identifier for startfi.nc file 6 6 ! INTEGER,SAVE :: nid_restart ! NetCDF file identifier for restartfi.nc file 7 !$OMP THREADPRIVATE(nid_start ,nid_restart)7 !$OMP THREADPRIVATE(nid_start) 8 8 9 9 ! restartfi.nc file dimension identifiers: (see open_restartphy())
Note: See TracChangeset
for help on using the changeset viewer.