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 13114 for branches/UKMO/dev_r5518_GO6_package_FOAMv14/NEMOGCM/NEMO – NEMO

Ignore:
Timestamp:
2020-06-16T17:48:15+02:00 (4 years ago)
Author:
mattmartin
Message:

Include diagnostic for SSH tendencies and their absolute values.

Location:
branches/UKMO/dev_r5518_GO6_package_FOAMv14/NEMOGCM/NEMO/OPA_SRC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/UKMO/dev_r5518_GO6_package_FOAMv14/NEMOGCM/NEMO/OPA_SRC/ASM/bias.F90

    r8447 r13114  
    283283         WRITE(numout,*) '     bias T and S apply             ln_bias_ts_app = ',ln_bias_ts_app 
    284284         WRITE(numout,*) '     bias pressure correctn apply   ln_bias_pc_app = ',ln_bias_pc_app 
    285          WRITE(numout,*) '     bias pressure correctn apply   ln_bias_pc_app = ',ln_bias_pc_app 
    286285         WRITE(numout,*) '     lat ramp for bias correction   nn_lat_ramp    = ',nn_lat_ramp 
    287286         WRITE(numout,*) '     time step for writing bias fld nn_bias_itwrt  = ',nn_bias_itwrt 
  • branches/UKMO/dev_r5518_GO6_package_FOAMv14/NEMOGCM/NEMO/OPA_SRC/DIA/diawri.F90

    r10302 r13114  
    161161 
    162162 
    163       CALL iom_put( "ssh" , sshn )                 ! sea surface height 
    164        
     163      CALL iom_put( "ssh" , sshn )                    ! sea surface height 
     164      CALL iom_put( "sshdt" , ( sshn - sshb ) / rdt ) ! sea surface height tendency (per second) 
     165      CALL iom_put( "sshdtabs" , ABS ( ( sshn - sshb ) / rdt ) ) ! absolute value of sea surface height tendency (per second) 
     166             
    165167      CALL iom_put( "toce", tsn(:,:,:,jp_tem) )    ! 3D temperature 
    166168      CALL theta2t ! in-situ temperature conversion 
Note: See TracChangeset for help on using the changeset viewer.