Changeset 1370
- Timestamp:
- 2009-04-02T09:23:12+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NEMO/LIM_SRC_2/limsbc_2.F90
r1228 r1370 38 38 REAL(wp) :: rzero = 0.e0 39 39 REAL(wp) :: rone = 1.e0 40 REAL(wp), DIMENSION(jpi,jpj) :: soce_r 41 REAL(wp), DIMENSION(jpi,jpj) :: sice_r 40 42 41 43 !! * Substitutions … … 78 80 INTEGER :: ifvt, i1mfr, idfr ! some switches 79 81 INTEGER :: iflt, ial, iadv, ifral, ifrdv 82 INTEGER :: ii0, ii1, ij0, ij1 ! temporary integers 80 83 REAL(wp) :: zqsr , zqns ! solar & non solar heat flux 81 84 REAL(wp) :: zinda ! switch for testing the values of ice concentration … … 100 103 IF(lwp) WRITE(numout,*) 'lim_sbc_2 : LIM 2.0 sea-ice - surface boundary condition' 101 104 IF(lwp) WRITE(numout,*) '~~~~~~~~~ ' 105 ! 106 IF( cp_cfg == "orca" .AND. jp_cfg == 2 ) THEN 107 ! ! ======================= 108 ! ! ORCA_R2 configuration 109 ! ! ======================= 110 soce_r(:,:) = soce 111 sice_r(:,:) = sice 112 ii0 = 145 ; ii1 = 180 ! Baltic Sea 113 ij0 = 113 ; ij1 = 130 ; soce_r(mi0(ii0):mi1(ii1) , mj0(ij0):mj1(ij1) ) = 4.e0 114 sice_r(mi0(ii0):mi1(ii1) , mj0(ij0):mj1(ij1) ) = 2.e0 115 ENDIF 116 ! 102 117 ENDIF 103 118 … … 204 219 205 220 ! computing salt exchanges at the ice/ocean interface 206 zfons = ( soce - sice) * ( rdmicif(ji,jj) / rdt_ice )221 zfons = ( soce_r(ji,jj) - sice_r(ji,jj) ) * ( rdmicif(ji,jj) / rdt_ice ) 207 222 208 223 ! converting the salt flux from ice to a freshwater flux from ocean
Note: See TracChangeset
for help on using the changeset viewer.