Changeset 12843
- Timestamp:
- 2020-05-01T12:54:03+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/trunk/src/OFF/nemogcm.F90
r12641 r12843 28 28 USE usrdef_nam ! user defined configuration 29 29 USE eosbn2 ! equation of state (eos bn2 routine) 30 USE bdy_oce, ONLY : ln_bdy 31 USE bdyini ! open boundary cond. setting (bdy_init routine) 30 32 ! ! ocean physics 31 33 USE ldftra ! lateral diffusivity setting (ldf_tra_init routine) … … 307 309 ! Initialise time level indices 308 310 Nbb = 1; Nnn = 2; Naa = 3; Nrhs = Naa 309 310 311 311 312 ! !-------------------------------! … … 329 330 330 331 CALL sbc_init( Nbb, Nnn, Naa ) ! Forcings : surface module 332 CALL bdy_init ! Open boundaries initialisation 331 333 332 334 ! ! Tracer physics … … 492 494 USE zdf_oce, ONLY : zdf_oce_alloc 493 495 USE trc_oce, ONLY : trc_oce_alloc 496 USE bdy_oce, ONLY : bdy_oce_alloc 494 497 ! 495 498 INTEGER :: ierr … … 501 504 ierr = ierr + zdf_oce_alloc() ! ocean vertical physics 502 505 ierr = ierr + trc_oce_alloc() ! shared TRC / TRA arrays 506 ierr = ierr + bdy_oce_alloc() ! bdy masks (incl. initialization) 503 507 ! 504 508 CALL mpp_sum( 'nemogcm', ierr )
Note: See TracChangeset
for help on using the changeset viewer.