Changeset 6259 for branches/NERC
- Timestamp:
- 2016-01-15T16:47:16+01:00 (9 years ago)
- Location:
- branches/NERC/dev_r5518_NOC_MEDUSA_Stable/NEMOGCM/NEMO/TOP_SRC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/NERC/dev_r5518_NOC_MEDUSA_Stable/NEMOGCM/NEMO/TOP_SRC/TRP/trcadv.F90
r5729 r6259 27 27 USE ldftra_oce ! lateral diffusion coefficient on tracers 28 28 USE prtctl_trc ! Print control 29 USE lbclnk ! ocean lateral boundary conditions (or mpp link) 29 30 30 31 IMPLICIT NONE … … 71 72 INTEGER, INTENT(in) :: kt ! ocean time-step index 72 73 ! 73 INTEGER :: jk 74 INTEGER :: jk, jn 74 75 CHARACTER (len=22) :: charout 75 76 REAL(wp), POINTER, DIMENSION(:,:,:) :: zun, zvn, zwn ! effective velocity … … 105 106 zvn(:,:,jpk) = 0._wp ! no transport trough the bottom 106 107 zwn(:,:,jpk) = 0._wp ! no transport trough the bottom 108 ! 109 !! Jpalm -- 14-01-2016 -- restart and proc pb - try this... 110 CALL lbc_lnk( zun(:,:,:), 'U', -1. ) 111 CALL lbc_lnk( zvn(:,:,:), 'V', -1. ) 112 CALL lbc_lnk( zwn(:,:,:), 'W', -1. ) 113 DO jn = 1, jptra 114 CALL lbc_lnk( trn(:,:,:,jn), 'T', 1. ) 115 CALL lbc_lnk( trb(:,:,:,jn), 'T', 1. ) 116 END DO 117 ! 107 118 108 119 IF( lk_traldf_eiv .AND. .NOT. ln_traldf_grif ) & ! add the eiv transport (if necessary) -
branches/NERC/dev_r5518_NOC_MEDUSA_Stable/NEMOGCM/NEMO/TOP_SRC/TRP/trcnxt.F90
r5729 r6259 105 105 DO jn = 1, jptra 106 106 CALL lbc_lnk( tra(:,:,:,jn), 'T', 1. ) 107 CALL lbc_lnk( trn(:,:,:,jn), 'T', 1. ) 108 CALL lbc_lnk( trb(:,:,:,jn), 'T', 1. ) 107 109 END DO 108 110 -
branches/NERC/dev_r5518_NOC_MEDUSA_Stable/NEMOGCM/NEMO/TOP_SRC/trcrst.F90
r6245 r6259 40 40 USE trcsms_cfc 41 41 #endif 42 USE lbclnk ! ocean lateral boundary conditions (or mpp link) 43 42 44 IMPLICIT NONE 43 45 PRIVATE … … 155 157 trb(:,:,:,jn) = trb(:,:,:,jn) * tmask(:,:,:) 156 158 END DO 157 159 ! 160 !! JPALM -- 14-01-2016 -- problem in TOP after a restart, proc edge 161 !! appear with abherent values. 162 !! -- add lbc_lnk(trn and trb) may solve this 163 ! Update after tracer on domain lateral boundaries 164 DO jn = 1, jptra 165 CALL lbc_lnk( trn(:,:,:,jn), 'T', 1. ) 166 CALL lbc_lnk( trb(:,:,:,jn), 'T', 1. ) 167 END DO 168 ! 158 169 !! AXY (09/06/14): the ARCHER version of MEDUSA-2 does not include an equivalent 159 170 !! call to MEDUSA-2 at this point; this suggests that the FCM
Note: See TracChangeset
for help on using the changeset viewer.