Changeset 15359 for NEMO/branches/UKMO/NEMO_4.0.4_FOAM_pcbias
- Timestamp:
- 2021-10-13T11:49:46+02:00 (3 years ago)
- Location:
- NEMO/branches/UKMO/NEMO_4.0.4_FOAM_pcbias/src/OCE
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/branches/UKMO/NEMO_4.0.4_FOAM_pcbias/src/OCE/nemogcm.F90
r14075 r15359 497 497 ! ! Assimilation increments 498 498 IF( lk_asminc ) CALL asm_inc_init ! Initialize assimilation increments 499 CALL bias_init ! Pressure correction bias 499 500 ! 500 501 IF(lwp) WRITE(numout,cform_aaa) ! Flag AAAAAAA -
NEMO/branches/UKMO/NEMO_4.0.4_FOAM_pcbias/src/OCE/step.F90
r14075 r15359 105 105 IF( ln_crs ) CALL iom_setkt( kstp - nit000 + 1, TRIM(cxios_context)//"_crs" ) ! tell IOM we are at time step kstp 106 106 107 IF( ln_bias ) CALL bias_opn( kstp ) 108 107 109 !>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 108 110 ! Update external forcing (tides, open boundaries, and surface boundary condition (including sea-ice) … … 230 232 IF( ln_trabbl ) CALL tra_bbl ( kstp ) ! advective (and/or diffusive) bottom boundary layer scheme 231 233 IF( ln_tradmp ) CALL tra_dmp ( kstp ) ! internal damping trends 234 IF( ln_bias ) CALL tra_bias ( kstp ) ! tracer bias 232 235 IF( ln_bdy ) CALL bdy_tra_dmp ( kstp ) ! bdy damping trends 233 236 #if defined key_agrif … … 262 265 !!jc2: dynnxt must be the latest call. e3t_b are indeed updated in that routine 263 266 CALL tra_nxt ( kstp ) ! finalize (bcs) tracer fields at next time step and swap 267 IF( ln_bias ) CALL dyn_bias ( kstp ) 264 268 CALL dyn_nxt ( kstp ) ! finalize (bcs) velocities at next time step and swap (always called after tra_nxt) 265 269 CALL ssh_swp ( kstp ) ! swap of sea surface height … … 297 301 298 302 IF( ln_diaobs ) CALL dia_obs ( kstp ) ! obs-minus-model (assimilation) diagnostics (call after dynamics update) 303 IF( lrst_bias ) CALL bias_wrt ( kstp ) ! write bias fields 299 304 300 305 !>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> -
NEMO/branches/UKMO/NEMO_4.0.4_FOAM_pcbias/src/OCE/step_oce.F90
r14075 r15359 88 88 89 89 USE asminc ! assimilation increments (tra_asm_inc routine) 90 ! (dyn_asm_inc routine) 90 ! (dyn_asm_inc routine) 91 USE biaspar ! bias param 92 USE bias ! bias routines (tra_bias routine 93 ! (dyn_bias routine) 91 94 USE asmbkg 92 95 USE stpctl ! time stepping control (stp_ctl routine)
Note: See TracChangeset
for help on using the changeset viewer.