Changeset 2194
- Timestamp:
- 2010-10-09T00:08:28+02:00 (14 years ago)
- Location:
- branches/DEV_r2006_merge_TRA_TRC/NEMO/TOP_SRC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DEV_r2006_merge_TRA_TRC/NEMO/TOP_SRC/TRP/trcadv.F90
r2124 r2194 67 67 IF( kt == nit000 ) CALL trc_adv_ctl ! initialisation & control of options 68 68 69 #if ! defined key_pisces 69 70 IF( neuler == 0 .AND. kt == nit000 ) THEN ! at nit000 70 71 r2dt(:) = rdttra(:) * FLOAT(nn_dttrc) ! = rdtra (restarting with Euler time stepping) … … 72 73 r2dt(:) = 2. * rdttra(:) * FLOAT(nn_dttrc) ! = 2 rdttra (leapfrog) 73 74 ENDIF 75 #else 76 r2dt(:) = rdttra(:) * FLOAT(nn_dttrc) ! = rdtra (restarting with Euler time stepping) 77 #endif 74 78 75 79 ! ! effective transport -
branches/DEV_r2006_merge_TRA_TRC/NEMO/TOP_SRC/TRP/trctrp.F90
r2082 r2194 74 74 #endif 75 75 CALL trc_zdf( kstp ) ! vertical mixing and after tracer fields 76 CALL trc_nxt( kstp ) ! tracer fields at next time step 77 IF( ln_trcrad ) CALL trc_rad( kstp ) ! Correct artificial negative concentrations 76 78 IF( ln_zps ) CALL zps_hde( kstp, jptra, trn, gtru, gtrv ) ! Partial steps: now horizontal gradient of passive 77 79 ! tracers at the bottom ocean level 78 CALL trc_nxt( kstp ) ! tracer fields at next time step79 IF( ln_trcrad ) CALL trc_rad( kstp ) ! Correct artificial negative concentrations80 80 ! 81 81 ELSE ! 1D vertical configuration -
branches/DEV_r2006_merge_TRA_TRC/NEMO/TOP_SRC/trcini.F90
r2104 r2194 133 133 134 134 IF( ln_zps .AND. .NOT. lk_trc_c1d ) & ! Partial steps: before horizontal gradient of passive 135 & CALL zps_hde( nit000, jptra, tr b, gtru, gtrv ) ! tracers at the bottom ocean level135 & CALL zps_hde( nit000, jptra, trn, gtru, gtrv ) ! tracers at the bottom ocean level 136 136 137 137
Note: See TracChangeset
for help on using the changeset viewer.