Changeset 374
- Timestamp:
- 2006-01-03T16:04:15+01:00 (19 years ago)
- Location:
- trunk/NEMO/OPA_SRC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NEMO/OPA_SRC/DYN/dynspg_ts.F90
r371 r374 115 115 IF(lwp) WRITE(numout,*) ' Number of sub cycle in 1 time-step (2 rdt) : icycle = ', FLOOR( 2*rdt/rdtbt ) 116 116 117 IF( ln_rstart ) THEN117 IF( .NOT. ln_rstart ) THEN 118 118 ! initialize barotropic specific arrays 119 119 sshb_b(:,:) = sshb(:,:) … … 158 158 z2dt_b = 2.0 * rdt ! baroclinic time step 159 159 IF ( neuler == 0 .AND. kt == nit000 ) z2dt_b = rdt 160 zfact1 = 0.5 * 0.25 160 zfact1 = 0.5 * 0.25 ! coefficient for vorticity estimates 161 161 zfact2 = 0.5 * 0.5 162 zraur = 1. / rauw ! 1 / volumic mass of pure water162 zraur = 1. / rauw ! 1 / volumic mass of pure water 163 163 164 164 ! ----------------------------------------------------------------------------- -
trunk/NEMO/OPA_SRC/DYN/dynspg_ts_jki.F90
r371 r374 114 114 IF(lwp) WRITE(numout,*) ' Number of sub cycle in 1 time-step (2 rdt) : icycle = ', FLOOR( 2*rdt/rdtbt ) 115 115 116 IF( ln_rstart ) THEN116 IF( .NOT. ln_rstart ) THEN 117 117 ! initialize barotropic specific arrays 118 118 sshb_b(:,:) = sshb(:,:) … … 148 148 z2dt_b = 2.0 * rdt ! baroclinic time step 149 149 IF ( neuler == 0 .AND. kt == nit000 ) z2dt_b = rdt 150 zfact1 = 0.5 * 0.25 150 zfact1 = 0.5 * 0.25 ! coefficient for vorticity estimates 151 151 zfact2 = 0.5 * 0.5 152 zraur = 1. / rauw ! 1 / volumic mass of pure water152 zraur = 1. / rauw ! 1 / volumic mass of pure water 153 153 154 154 ! ----------------------------------------------------------------------------- -
trunk/NEMO/OPA_SRC/OBC/obcfla.F90
r367 r374 43 43 !! ** Purpose : 44 44 !! Apply Flather's algorithm at open boundaries for the time-splitting 45 !! free surface case 46 !! 47 !! This routine is called in dyn nxt.F routine and updates ua, va and sshn.45 !! free surface case (barotropic variables) 46 !! 47 !! This routine is called in dynspg_ts.F90 routine 48 48 !! 49 49 !! The logical variable lp_obc_east, and/or lp_obc_west, and/or lp_obc_north, 50 50 !! and/or lp_obc_south allow the user to determine which boundary is an 51 !! open one (must be done in the param_obc.h90 file).51 !! open one (must be done in the obc_par.F90 file). 52 52 !! 53 53 !! ** Reference : … … 73 73 !! Apply Flather's algorithm on east OBC velocities ua, va 74 74 !! Fix sea surface height (sshn_e) on east open boundary 75 !! The logical lfbceast must be .TRUE.76 75 !! 77 76 !! History : … … 112 111 !! Apply Flather's algorithm on west OBC velocities ua, va 113 112 !! Fix sea surface height (sshn_e) on west open boundary 114 !! The logical lfbcwest must be .TRUE.115 113 !! 116 114 !! History : … … 148 146 !! Apply Flather's algorithm on north OBC velocities ua, va 149 147 !! Fix sea surface height (sshn_e) on north open boundary 150 !! The logical lfbcnorth must be .TRUE.151 148 !! 152 149 !! History : … … 186 183 !! Apply Flather's algorithm on south OBC velocities ua, va 187 184 !! Fix sea surface height (sshn_e) on south open boundary 188 !! The logical lfbcsouth must be .TRUE. 189 !! 190 !! History : 191 !! 9.0 ! 05-12 (V. Garnier) original 192 !!------------------------------------------------------------------------------ 193 !! * Local declaration 194 INTEGER :: ji, jj, jk ! dummy loop indices 195 196 !!------------------------------------------------------------------------------ 197 !! OPA 8.5, LODYC-IPSL (2002) 185 !! 186 !! History : 187 !! 9.0 ! 05-12 (V. Garnier) original 188 !!------------------------------------------------------------------------------ 189 !! * Local declaration 190 INTEGER :: ji, jj, jk ! dummy loop indices 191 198 192 !!------------------------------------------------------------------------------ 199 193
Note: See TracChangeset
for help on using the changeset viewer.