Ignore:
Timestamp:
Jun 12, 2024, 11:00:16 AM (6 months ago)
Author:
emillour
Message:

Mars PCM:
Change the way the rate of outputs for diagfi.nc files is specified:
IMPORTANT: Specifying "ecritphy" no longer possible and will trigger an error.
Use "outputs_per_sol" to specify output rate instead.
This should makes things (hopefully) clearer for users and also better
enforces a cleaner and clearer separation between dynamics and physics.
EM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/physiq_mod.F

    r3325 r3369  
    6565      use conc_mod, only: init_r_cp_mu, update_r_cp_mu_ak, rnew,
    6666     &                    cpnew, mmean
    67       use time_phylmdz_mod, only: iphysiq, day_step, ecritstart, daysec
     67      use time_phylmdz_mod, only: steps_per_sol
     68      use time_phylmdz_mod, only: iphysiq, ecritstart, daysec
    6869      use dimradmars_mod, only: aerosol, totcloudfrac,
    6970     &                          dtrad, fluxrad_sky, fluxrad, albedo,
     
    10071008           ENDIF !end callnlte
    10081009
    1009 c          Find number of layers for LTE radiation calculations
    1010            IF(MOD(iphysiq*(icount-1),day_step).EQ.0)
     1010!          Find number of layers for LTE radiation calculations
     1011!          (done only once per sol)
     1012           IF(MOD((icount-1),steps_per_sol).EQ.0)
    10111013     &          CALL nlthermeq(ngrid,nlayer,zplev,zplay)
    10121014
Note: See TracChangeset for help on using the changeset viewer.