Changeset 10700
- Timestamp:
- 2019-02-19T17:37:56+01:00 (6 years ago)
- Location:
- NEMO/branches/2019/fix_ticket2238_solution1/src/OCE/ICB
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/branches/2019/fix_ticket2238_solution1/src/OCE/ICB/icb_oce.F90
r10696 r10700 86 86 ! particularly for MPP when iceberg can lie inside T grid but outside U, V, or f grid 87 87 REAL(wp), PUBLIC, DIMENSION(:,:), ALLOCATABLE :: uo_e, vo_e 88 REAL(wp), PUBLIC, DIMENSION(:,:), ALLOCATABLE :: ff_e, tt_e, fr_e , hi_e88 REAL(wp), PUBLIC, DIMENSION(:,:), ALLOCATABLE :: ff_e, tt_e, fr_e 89 89 REAL(wp), PUBLIC, DIMENSION(:,:), ALLOCATABLE :: ua_e, va_e 90 90 REAL(wp), PUBLIC, DIMENSION(:,:), ALLOCATABLE :: ssh_e 91 91 #if defined key_si3 || defined key_cice 92 REAL(wp), PUBLIC, DIMENSION(:,:), ALLOCATABLE :: ui_e, vi_e92 REAL(wp), PUBLIC, DIMENSION(:,:), ALLOCATABLE :: hi_e, ui_e, vi_e 93 93 #endif 94 94 … … 174 174 & ui_e(0:jpi+1,0:jpj+1) , & 175 175 & vi_e(0:jpi+1,0:jpj+1) , & 176 & hi_e(0:jpi+1,0:jpj+1) , & 176 177 #endif 177 178 & ff_e(0:jpi+1,0:jpj+1) , fr_e(0:jpi+1,0:jpj+1) , & 178 179 & tt_e(0:jpi+1,0:jpj+1) , ssh_e(0:jpi+1,0:jpj+1) , & 179 & hi_e(0:jpi+1,0:jpj+1) , &180 180 & first_width(nclasses) , first_length(nclasses) , & 181 181 & src_calving (jpi,jpj) , & -
NEMO/branches/2019/fix_ticket2238_solution1/src/OCE/ICB/icbini.F90
r10697 r10700 79 79 ua_e(:,:) = 0._wp ; va_e(:,:) = 0._wp ; 80 80 ff_e(:,:) = 0._wp ; tt_e(:,:) = 0._wp ; 81 fr_e(:,:) = 0._wp ; hi_e(:,:) = 0._wp ;81 fr_e(:,:) = 0._wp ; 82 82 #if defined key_si3 83 hi_e(:,:) = 0._wp ; 83 84 ui_e(:,:) = 0._wp ; vi_e(:,:) = 0._wp ; 84 85 #endif
Note: See TracChangeset
for help on using the changeset viewer.