New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 8324 for branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3 – NEMO

Ignore:
Timestamp:
2017-07-12T15:36:28+02:00 (7 years ago)
Author:
clem
Message:

STEP3 (2): clean separation between sea-ice and ocean

Location:
branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3/icestp.F90

    r8322 r8324  
    302302      CALL ice_run_init                ! set some ice run parameters 
    303303      ! 
    304       !                                ! Allocate the ice arrays 
     304      !                                ! Allocate the ice arrays (sbc_ice already allocated in sbc_init) 
    305305      ierr =        ice_alloc        ()      ! ice variables 
    306       ierr = ierr + sbc_ice_alloc    ()      ! surface forcing 
    307306      ierr = ierr + thd_ice_alloc    ()      ! thermodynamics 
    308307      IF( ln_limdyn )   ierr = ierr + lim_itd_me_alloc ()      ! ice thickness distribution - mechanics 
  • branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3/limrhg.F90

    r8319 r8324  
    1919   !!---------------------------------------------------------------------- 
    2020   USE phycst         ! Physical constant 
    21    USE oce     , ONLY :  snwice_mass, snwice_mass_b 
    2221   USE par_oce        ! Ocean parameters 
    2322   USE dom_oce        ! Ocean domain 
    2423   USE sbc_oce , ONLY : ln_ice_embd, nn_fsbc, ssh_m 
    25    USE sbc_ice , ONLY : utau_ice, vtau_ice 
     24   USE sbc_ice , ONLY : utau_ice, vtau_ice, snwice_mass, snwice_mass_b 
    2625   USE ice            ! ice variables 
    2726   USE limitd_me      ! ice strength 
  • branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3/limrst.F90

    r8321 r8324  
    1717   !!---------------------------------------------------------------------- 
    1818   USE ice            ! sea-ice variables 
    19    USE oce    , ONLY :  snwice_mass, snwice_mass_b 
     19   USE sbc_ice , ONLY :  snwice_mass, snwice_mass_b 
    2020   USE dom_oce        ! ocean domain 
    2121   USE sbc_oce , ONLY : nn_fsbc 
  • branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3/limsbc.F90

    r8321 r8324  
    2424   !!---------------------------------------------------------------------- 
    2525   USE par_oce        ! ocean parameters 
    26    USE oce     , ONLY : sshn, sshb, snwice_mass, snwice_mass_b, snwice_fmass 
     26   USE oce     , ONLY : sshn, sshb 
    2727   USE phycst         ! physical constants 
    2828   USE dom_oce        ! ocean domain 
    2929   USE ice            ! LIM sea-ice variables 
    30    USE sbc_ice , ONLY : emp_oce, qns_oce, qsr_oce, qemp_oce, emp_ice, qsr_ice, qemp_ice, qevap_ice, alb_ice, tn_ice, cldf_ice 
     30   USE sbc_ice , ONLY : emp_oce, qns_oce, qsr_oce, qemp_oce, emp_ice, qsr_ice, qemp_ice, qevap_ice, alb_ice, tn_ice, cldf_ice,  & 
     31      &                 snwice_mass, snwice_mass_b, snwice_fmass 
    3132   USE sbc_oce , ONLY : nn_fsbc, ln_ice_embd, sfx, fr_i, qsr_tot, qns, qsr, fmmflx, emp, taum, utau, vtau 
    3233   USE sbccpl         ! Surface boundary condition: coupled interface 
Note: See TracChangeset for help on using the changeset viewer.