- Timestamp:
- 2015-02-02T11:28:50+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2015/dev_r5044_CNRS_LIM3CLEAN/NEMOGCM/NEMO/LIM_SRC_3/thd_ice.F90
r5047 r5048 35 35 !: are the variables corresponding to 2d vectors 36 36 37 INTEGER , PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) :: npb !: number of points where computations has to be done 38 INTEGER , PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) :: npac !: correspondance between points (lateral accretion) 37 INTEGER , PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) :: npb !: address vector for 1d vertical thermo computations 38 INTEGER , PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) :: nplm !: address vector for mono-category lateral melting 39 INTEGER , PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) :: npac !: address vector for new ice formation 39 40 40 41 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) :: qlead_1d … … 109 110 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) :: dh_i_bott !: Ice bottom accretion/ablation [m] 110 111 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) :: dh_snowice !: Snow ice formation [m of ice] 112 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) :: dh_i_melt_1d !: Net melting [m], for mono-cat lateral melting 111 113 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) :: sm_i_1d !: Ice bulk salinity [ppt] 112 114 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) :: s_i_new !: Salinity of new ice at the bottom … … 138 140 !!---------------------------------------------------------------------! 139 141 140 ALLOCATE( npb (jpij) , np ac (jpij),&142 ALLOCATE( npb (jpij) , nplm (jpij) , npac (jpij), & 141 143 ! ! 142 144 & qlead_1d (jpij) , ftr_ice_1d (jpij) , & … … 165 167 & ht_s_1d (jpij) , fc_su (jpij) , fc_bo_i (jpij) , & 166 168 & dh_s_tot (jpij) , dh_i_surf(jpij) , dh_i_bott(jpij) , & 167 & dh_snowice(jpij) , sm_i_1d (jpij) , s_i_new (jpij) , & 169 & dh_snowice(jpij) , dh_i_melt_1d(jpij) , & 170 & sm_i_1d (jpij) , s_i_new (jpij) , & 168 171 & t_s_1d(jpij,nlay_s), & 169 172 & t_i_1d(jpij,nlay_i+1), s_i_1d(jpij,nlay_i+1) , &
Note: See TracChangeset
for help on using the changeset viewer.