Changeset 3621


Ignore:
Timestamp:
Feb 12, 2025, 2:01:14 PM (5 hours ago)
Author:
emillour
Message:

Generic PCM:
Follow-up of recent changes in iostart (making 1D restarts) from r3562,
Correspondingly adapt newstart.
EM

Location:
trunk/LMDZ.GENERIC
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/changelog.txt

    r3515 r3621  
    19901990controle array stored therein. Remove obsolete unused variables "lmixmin"
    19911991and "emin_turb" in the process.
     1992
     1993== 12/02/2025 == EM
     1994Follow-up of recent changes in iostart (making 1D restarts) from r3562,
     1995Correspondingly adapt newstart.
  • trunk/LMDZ.GENERIC/libf/dynphy_lonlat/phystd/newstart.F

    r3576 r3621  
    3030      use control_mod, only: day_step, iphysiq, anneeref, planet_type
    3131      use phyredem, only: physdem0, physdem1
    32       use iostart, only: open_startphy
     32      use iostart, only: nid_start, open_startphy
    3333!      use slab_ice_h, only:noceanmx
    3434      USE ocean_slab_mod, ONLY: nslay
     
    445445         ! tabfi requires that input file be first opened by open_startphy(fichnom)
    446446         fichnom = 'start_archive.nc'
    447          call open_startphy(fichnom)
     447         call open_startphy(fichnom,nid_start)
    448448         call tabfi (ngridmx,nid,Lmodif,tab0,day_ini,lllm,p_rad,
    449449     .            p_omeg,p_g,p_cpp,p_mugaz,p_daysec,time)
    450450      else if (choix_1.eq.1) then
    451451         fichnom = 'startfi.nc'
    452          call open_startphy(fichnom)
     452         call open_startphy(fichnom,nid_start)
    453453         Lmodif=1 ! Lmodif set to 1 to allow modifications in phyeta0                           
    454454         call tabfi (ngridmx,nid_fi,Lmodif,tab0,day_ini,lllm,p_rad,
  • trunk/LMDZ.GENERIC/libf/phystd/iostart.F90

    r3562 r3621  
    55    INTEGER,SAVE :: nid_start ! NetCDF file identifier for startfi.nc file
    66    ! INTEGER,SAVE :: nid_restart ! NetCDF file identifier for restartfi.nc file
    7 !$OMP THREADPRIVATE(nid_start,nid_restart)
     7!$OMP THREADPRIVATE(nid_start)
    88   
    99    ! restartfi.nc file dimension identifiers: (see open_restartphy())
Note: See TracChangeset for help on using the changeset viewer.