Changeset 8626
- Timestamp:
- 2017-10-13T19:21:48+02:00 (6 years ago)
- Location:
- branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3/iceistate.F90
r8597 r8626 314 314 315 315 ! for constant salinity in time 316 IF( nn_icesal == 1 .OR. nn_icesal == 3) THEN316 IF( nn_icesal /= 2 ) THEN 317 317 CALL ice_var_salprof 318 318 sv_i = s_i * v_i -
branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3/icethd.F90
r8623 r8626 584 584 CALL ice_thd_pnd_init ! set melt ponds parameters 585 585 ! 586 IF( ln_icedS .AND. nn_icesal == 1 ) THEN587 ln_icedS = .FALSE.588 CALL ctl_warn('ln_icedS is set to false since constant ice salinity is chosen (nn_icesal=1)')589 ENDIF590 !591 586 END SUBROUTINE ice_thd_init 592 587 -
branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3/icethd_dh.F90
r8623 r8626 615 615 616 616 ! Case constant salinity in time: virtual salt flux to keep salinity constant 617 IF( nn_icesal == 1 .OR. nn_icesal == 3) THEN617 IF( nn_icesal /= 2 ) THEN 618 618 sfx_bri_1d(ji) = sfx_bri_1d(ji) - sss_1d (ji) * a_i_1d(ji) * zfmdt * r1_rdtice & ! put back sss_m into the ocean 619 619 & - s_i_1d(ji) * a_i_1d(ji) * dh_snowice(ji) * rhoic * r1_rdtice ! and get rn_icesal from the ocean -
branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/OPA_SRC/BDY/bdyice.F90
r8564 r8626 19 19 USE eosbn2 ! equation of state 20 20 USE oce ! ocean dynamics and tracers variables 21 USE ice ! LIM_3 ice variables 22 USE icevar 23 USE icectl 21 USE ice ! sea-ice: variables 22 USE icevar ! sea-ice: operations 23 USE iceitd ! sea-ice: rebining 24 USE icectl ! sea-ice: control prints 24 25 USE par_oce ! ocean parameters 25 26 USE dom_oce ! ocean space and time domain variables … … 71 72 END DO 72 73 ! 73 74 74 CALL ice_var_zapsmall 75 CALL ice_var_agg(1) 75 76 IF( ln_icectl ) CALL ice_prt( kt, iiceprt, jiceprt, 1, ' - ice thermo bdy - ' ) 76 77 ! … … 248 249 END DO !jl 249 250 ! 251 ! --- In case categories are out of bounds, do a remapping --- ! 252 ! i.e. inputs have not the same ice thickness distribution 253 ! (set by rn_himean) than the regional simulation 254 IF( jpl > 1 ) CALL ice_itd_reb( kt ) 250 255 ! 251 256 IF( nn_timing == 1 ) CALL timing_stop('bdy_ice_frs')
Note: See TracChangeset
for help on using the changeset viewer.