Changeset 12841
- Timestamp:
- 2020-05-01T12:52:40+02:00 (4 years ago)
- Location:
- NEMO/releases/r4.0/r4.0-HEAD/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/releases/r4.0/r4.0-HEAD/src/OFF/nemogcm.F90
r12640 r12841 27 27 USE usrdef_nam ! user defined configuration 28 28 USE eosbn2 ! equation of state (eos bn2 routine) 29 ! ! ocean physics 29 ! ! ocean physics 30 USE bdy_oce, ONLY : ln_bdy 31 USE bdyini ! open boundary cond. setting (bdy_init routine) 30 32 USE ldftra ! lateral diffusivity setting (ldf_tra_init routine) 31 33 USE ldfslp ! slopes of neutral surfaces (ldf_slp_init routine) … … 312 314 313 315 CALL sbc_init ! Forcings : surface module 316 CALL bdy_init ! Open boundaries initialisation 314 317 315 318 ! ! Tracer physics … … 476 479 USE zdf_oce, ONLY : zdf_oce_alloc 477 480 USE trc_oce, ONLY : trc_oce_alloc 481 USE bdy_oce, ONLY : bdy_oce_alloc 478 482 ! 479 483 INTEGER :: ierr … … 485 489 ierr = ierr + zdf_oce_alloc() ! ocean vertical physics 486 490 ierr = ierr + trc_oce_alloc() ! shared TRC / TRA arrays 491 ierr = ierr + bdy_oce_alloc() ! bdy masks (incl. initialization) 492 487 493 ! 488 494 CALL mpp_sum( 'nemogcm', ierr ) -
NEMO/releases/r4.0/r4.0-HEAD/src/TOP/MY_TRC/trcsms_my_trc.F90
r10425 r12841 15 15 USE trd_oce 16 16 USE trdtrc 17 USE trcbc, only : trc_bc18 17 19 18 IMPLICIT NONE … … 54 53 IF( l_trdtrc ) ALLOCATE( ztrmyt(jpi,jpj,jpk) ) 55 54 56 CALL trc_bc ( kt ) ! tracers: surface and lateral Boundary Conditions57 58 55 ! add here the call to BGC model 59 56 -
NEMO/releases/r4.0/r4.0-HEAD/src/TOP/TRP/trctrp.F90
r10068 r12841 24 24 USE trcsbc ! surface boundary condition (trc_sbc routine) 25 25 USE zpshde ! partial step: hor. derivative (zps_hde routine) 26 USE trcbc ! Tracers boundary condtions ( trc_bc routine) 26 27 USE bdy_oce , ONLY: ln_bdy 27 28 USE trcbdy ! BDY open boundaries … … 63 64 IF( ln_trabbl ) CALL trc_bbl ( kt ) ! advective (and/or diffusive) bottom boundary layer scheme 64 65 IF( ln_trcdmp ) CALL trc_dmp ( kt ) ! internal damping trends 66 CALL trc_bc ( kt ) ! BC for BDY 65 67 IF( ln_bdy ) CALL trc_bdy_dmp( kt ) ! BDY damping trends 66 68 CALL trc_adv ( kt ) ! horizontal & vertical advection -
NEMO/releases/r4.0/r4.0-HEAD/src/TOP/trcbc.F90
r11536 r12841 153 153 IF(trcdta_bdy(jn,ib)%cn_obc == 'frs' .AND. nn_trcdmp_bdy(ib) /= 0 ) & 154 154 & CALL ctl_stop( 'trc_bc_ini: Use FRS OR relaxation' ) 155 IF( .NOT.( 0 < nn_trcdmp_bdy(ib) .AND. nn_trcdmp_bdy(ib) <= 2 ) ) &155 IF( .NOT.( 0 <= nn_trcdmp_bdy(ib) .AND. nn_trcdmp_bdy(ib) <= 2 ) ) 156 156 & CALL ctl_stop( 'trc_bc_ini: Not a valid option for nn_trcdmp_bdy. Allowed: 0,1,2.' ) 157 157 END DO -
NEMO/releases/r4.0/r4.0-HEAD/src/TOP/trcini.F90
r12136 r12841 218 218 IF( ln_trcdta ) CALL trc_dta_ini( jptra ) ! set initial tracers values 219 219 ! 220 IF( ln_my_trc )CALL trc_bc_ini ( jptra ) ! set tracers Boundary Conditions220 CALL trc_bc_ini ( jptra ) ! set tracers Boundary Conditions 221 221 ! 222 222 !
Note: See TracChangeset
for help on using the changeset viewer.