Changeset 3544


Ignore:
Timestamp:
Dec 10, 2024, 4:24:49 PM (3 days ago)
Author:
afalco
Message:

Pluto: example files for DYNAMICO.
AF

Location:
trunk/LMDZ.PLUTO
Files:
14 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.PLUTO/libf/phypluto/physiq_mod.F90

    r3539 r3544  
    8989      use wxios, only: wxios_context_init, xios_context_finalize
    9090#endif
     91      USE mod_grid_phy_lmdz, ONLY: grid_type,unstructured,regular_lonlat
    9192      use write_output_mod, only: write_output
    9293
     
    952953      !    albedo(i,:) = albedo(1,:)
    953954      ! enddo
     955      ! AF24: TODO check albedo has been initialized here
    954956
    955957      if (firstcall.and.callsoil) then
     
    20662068
    20672069      if(lastcall) then
    2068          ztime_fin = ptime + ptimestep/(float(iphysiq)*daysec)
    2069 
     2070         IF (grid_type==unstructured) THEN !IF DYNAMICO
     2071            ! DYNAMICO: no need to add a dynamics time step to ztime_fin
     2072            ztime_fin = ptime
     2073         ELSE ! LMDZ
     2074            ztime_fin = ptime + ptimestep/(float(iphysiq)*daysec)
     2075         ENDIF ! of IF (grid_type==unstructured)
    20702076         !! Update surface ice distribution to iterate to steady state if requested
    20712077         !! AF24: removed
Note: See TracChangeset for help on using the changeset viewer.