New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 9296 for branches/UKMO/dev_r5518_GO6_package_asm_3d_bgc/NEMOGCM/NEMO/OPA_SRC/nemogcm.F90 – NEMO

Ignore:
Timestamp:
2018-01-31T16:27:16+01:00 (6 years ago)
Author:
dford
Message:

Move most of the BGC assimilation code into its own module, to make it more portable across versions/configurations. Partially apply the new naming conventions for BGC obs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/UKMO/dev_r5518_GO6_package_asm_3d_bgc/NEMOGCM/NEMO/OPA_SRC/nemogcm.F90

    r9292 r9296  
    6161   USE asminc          ! assimilation increments      
    6262   USE asmbkg          ! writing out state trajectory 
    63    USE asmbal          ! writing out biogeochemical assimilation balancing increments 
     63   USE asmbgc          ! biogeochemical assimilation increments 
    6464   USE diaptr          ! poleward transports           (dia_ptr_init routine) 
    6565   USE diadct          ! sections transports           (dia_dct_init routine) 
     
    161161                IF( ln_dyninc ) CALL dyn_asm_inc( nit000 - 1 )    ! Dynamics 
    162162                IF( ln_sshinc ) CALL ssh_asm_inc( nit000 - 1 )    ! SSH 
    163                 IF( ln_logchlinc ) CALL logchl_asm_inc( nit000 - 1 ) 
    164                 IF( ln_fco2inc .OR. ln_pco2inc ) CALL pco2_asm_inc( nit000 - 1 ) 
     163                IF( lk_bgcinc ) CALL bgc_asm_inc( nit000 - 1 )    ! BGC 
    165164             ENDIF 
    166165          ENDIF 
     
    195194      IF( lk_diaobs   )   CALL dia_obs_wri 
    196195      ! 
    197       IF( ( lk_asminc ).AND.( ln_balwri ) ) CALL asm_bal_wri( nitend )  ! Output balancing increments 
     196      IF( ( lk_asminc ).AND.( ln_balwri ) ) CALL asm_bgc_bal_wri( nitend )  ! Output balancing increments 
    198197      ! 
    199198      IF( ln_icebergs )   CALL icb_end( nitend ) 
Note: See TracChangeset for help on using the changeset viewer.