Custom Query (986 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (781 - 783 of 986)

Ticket Owner Reporter Resolution Summary
#929 arango Done Updated Copyright to 2002-2023
Description

Updated the ROMS/TOMS Copyright to all algorithms:

 Copyright (c) 2002-2023 The ROMS/TOMS Group
    Licensed under a MIT/X style license
    See License_ROMS.txt
#930 arango Done Minor Miscelaneous Update
Description
  • For consistency with the ROMS-JEDI interface, the standard_name pair for zeta in varinfo.yaml was changed.
     - variable:       zeta                                             # Input/Output
       standard_name:  sea_surface_height_above_geopotential_datum
       long_name:      free-surface
       units:          meter                                            # [m]
       field:          free-surface
       time:           ocean_time
       index_code:     idFsur
       type:           r2dvar
       add_offset:     0.0d0
       scale:          1.0d0
    
    It is a more consistent value when assimilating Absolute Dynamic Topography (ADT), which is derived from satellite altimetry observations:
    ADT = MeanDynamicTopography (MDT) + SeaLevelAnomaly (SLA)
    
  • Corrected information typos in driver jedi_roms.h and yaml_parser.F.
#931 arango Fixed VERY IMPORTANT: corrected bug in ATM_PRESS term for shallow-water applications
Description

There is a sign error when adding the ATM_PRESS term in step2d for shallow-water applications (SOLVE3D off). So we need to have the following code instead:

#if defined ATM_PRESS && !defined SOLVE3D
          rhs_ubar(i,j)=rhs_ubar(i,j)-                                  &
     &                  fac3*on_u(i,j)*                                 &
     &                  (h(i-1,j)+h(i,j)+                               &
     &                   gzeta(i-1,j)+gzeta(i,j))*                      &
     &                  (Pair(i,j)-Pair(i-1,j))
#endif
...
#if defined ATM_PRESS && !defined SOLVE3D
            rhs_vbar(i,j)=rhs_vbar(i,j)-                                &
     &                    fac3*om_v(i,j)*                               &
     &                    (h(i,j-1)+h(i,j)+                             &
     &                     gzeta(i,j-1)+gzeta(i,j))*                    &
     &                    (Pair(i,j)-Pair(i,j-1))
#endif

We need to use a minus sign for the contribution—many thanks to Shunpei Matsuo for reporting this bug.


I noticed the sign issue when coding the adjacent term for the TIDE_GENERATING_FORCES option in step2d_LF_AM3.h for a similar shallow water configuration. I was supposed to set a test case for the air pressure forcing inverted barometer effect in the barotropic pressure gradient. But it was low on my long priority list. So, I forgot. Thus, Shunpei Matsuo's cyclone application is suitable for testing the ATM_PRESS this term.

A cyclone rotates counterclockwise around a center of low atmospheric pressure in the northern hemisphere. Consequently, the inverted barometer effect causes the water level to rise to form a dome around the low-pressure center, as shown below:

https://www.myroms.org/trac/InvertedBarometerEffect.png

Notice that the opposite would happen over a cell of high air pressure causing the water level to drop.

Above Figure is taken from the SWELLNET, which is used by surfers.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.