Ignore:
Timestamp:
Jan 30, 2020, 2:38:10 PM (4 years ago)
Author:
lguez
Message:

Bug fix: use missing_val from XIOS for output with XIOS, else the
operations are not done propoerly in XIOS.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Ocean_skin/libf/phylmd/phyetat0.F90

    r3605 r3626  
    2929  USE ocean_slab_mod, ONLY: nslay, tslab, seaice, tice, ocean_slab_init
    3030  USE time_phylmdz_mod, ONLY: init_iteration, pdtphys, itau_phy
    31   use netcdf, only: nf90_fill_real
     31#ifdef CPP_XIOS
     32  USE wxios, ONLY: missing_val
     33#else
     34  use netcdf, only: missing_val => nf90_fill_real
     35#endif
    3236  use config_ocean_skin_m, only: activate_ocean_skin
    3337
     
    542546
    543547     where (pctsrf(:, is_oce) == 0.)
    544         ds_ns = nf90_fill_real
    545         dt_ns = nf90_fill_real
     548        ds_ns = missing_val
     549        dt_ns = missing_val
    546550     end where
    547551  end if
Note: See TracChangeset for help on using the changeset viewer.