Changeset 3626 for LMDZ6/branches
- Timestamp:
- Jan 30, 2020, 2:38:10 PM (5 years ago)
- Location:
- LMDZ6/branches/Ocean_skin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Ocean_skin/arch/arch-X64_JEANZAY.env
r3617 r3626 6 6 7 7 module load gcc/6.5.0 8 module load idrmem/1.4-mpi -
LMDZ6/branches/Ocean_skin/arch/arch-X64_JEANZAY.fcm
r3617 r3626 14 14 %OMP_FFLAGS -qopenmp 15 15 %BASE_LD -i4 -r8 -auto -lmkl_intel_lp64 -lmkl_core -lmkl_sequential -lpthread 16 %MPI_LD -lidrmem16 %MPI_LD 17 17 %OMP_LD -qopenmp -
LMDZ6/branches/Ocean_skin/libf/phylmd/pbl_surface_mod.F90
r3605 r3626 294 294 use phys_state_var_mod, only: ds_ns, dt_ns 295 295 use phys_output_var_mod, only: t_int, s_int, dter, dser, tkt, tks, rf, taur 296 use netcdf, only: nf90_fill_real 296 #ifdef CPP_XIOS 297 USE wxios, ONLY: missing_val 298 #else 299 use netcdf, only: missing_val => nf90_fill_real 300 #endif 297 301 298 302 IMPLICIT NONE … … 966 970 967 971 if (activate_ocean_skin >= 1) then 968 t_int = nf90_fill_real969 s_int = nf90_fill_real970 dter = nf90_fill_real971 dser = nf90_fill_real972 tkt = nf90_fill_real973 tks = nf90_fill_real974 rf = nf90_fill_real975 taur = nf90_fill_real972 t_int = missing_val 973 s_int = missing_val 974 dter = missing_val 975 dser = missing_val 976 tkt = missing_val 977 tks = missing_val 978 rf = missing_val 979 taur = missing_val 976 980 end if 977 981 … … 2566 2570 2567 2571 if (nsrf == is_oce .and. activate_ocean_skin >= 1) then 2568 dt_ns = nf90_fill_real2569 ds_ns = nf90_fill_real2572 dt_ns = missing_val 2573 ds_ns = missing_val 2570 2574 ds_ns(ni(:knon)) = yds_ns(:knon) 2571 2575 dt_ns(ni(:knon)) = ydt_ns(:knon) -
LMDZ6/branches/Ocean_skin/libf/phylmd/phyetat0.F90
r3605 r3626 29 29 USE ocean_slab_mod, ONLY: nslay, tslab, seaice, tice, ocean_slab_init 30 30 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 32 36 use config_ocean_skin_m, only: activate_ocean_skin 33 37 … … 542 546 543 547 where (pctsrf(:, is_oce) == 0.) 544 ds_ns = nf90_fill_real545 dt_ns = nf90_fill_real548 ds_ns = missing_val 549 dt_ns = missing_val 546 550 end where 547 551 end if -
LMDZ6/branches/Ocean_skin/libf/phylmd/phys_output_ctrlout_mod.F90
r3605 r3626 1956 1956 1957 1957 type(ctrl_out), save:: o_ds_ns & 1958 = ctrl_out([1, 10, 10, 1, 10, 10, 11, 11, 11, 11], 'd s_ns', &1958 = ctrl_out([1, 10, 10, 1, 10, 10, 11, 11, 11, 11], 'dS_ns', & 1959 1959 "delta salinity near surface", "ppt", '') 1960 1960 … … 1968 1968 1969 1969 type(ctrl_out), save:: o_dser & 1970 = ctrl_out([1, 10, 10, 1, 10, 10, 11, 11, 11, 11], 'd ser', &1970 = ctrl_out([1, 10, 10, 1, 10, 10, 11, 11, 11, 11], 'dSer', & 1971 1971 "salinity variation in the diffusive microlayer", "ppt", '') 1972 1972 … … 1977 1977 type(ctrl_out), save:: o_tks & 1978 1978 = ctrl_out([1, 10, 10, 1, 10, 10, 11, 11, 11, 11], 'tks', & 1979 "thickness o ssalinity microlayer", "m", '')1979 "thickness of salinity microlayer", "m", '') 1980 1980 1981 1981 type(ctrl_out), save:: o_rf &
Note: See TracChangeset
for help on using the changeset viewer.