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.
Custom Query – NEMO

Custom Query (2547 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (34 - 36 of 2547)

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Ticket Resolution Summary Owner Reporter
#1060 fixed minor alterations to iceberg trajectory component acc acc
Description

A couple of small corrections to the iceberg trajectory modules courtesy of Vladimir Ivchenko.

  1. A parameter correction in icbclv.F90. Line 59 corrected to use the iceberg density instead of the pure water density:
         zfact = ( (1000._wp)**3 / ( NINT(rday) * nyear_len(1) ) ) * 850._wp
    
  1. Limiters placed on index calculations to prevent array bounds errors near cyclic boundaries. For example:
    --- NEMOGCM/NEMO/OPA_SRC/ICB/icbutl.F90 (revision 3820)
    +++ NEMOGCM/NEMO/OPA_SRC/ICB/icbutl.F90 (working copy)
    @@ -195,23 +195,23 @@
                 ! note that here there is no +0.5 added
                 ! since we're looking for four T points containing quadrant we're in of 
                 ! current T cell
    -            ii = INT( pi     )
    -            ij = INT( pj      )    ! T-point
    +            ii = MAX(1, INT( pi     ))
    +            ij = MAX(1, INT( pj     ))    ! T-point
                 zi = pi - REAL(ii,wp)
                 zj = pj - REAL(ij,wp)
    

Code now reflects the version in active use.

#1216 fixed Temporary development branch for hosting surface wave components from ECMWF acc acc
Description

Working branch to import surface wave components from ECMWF. Changes will have to be ported to a proper 2014 branch of the trunk at a later date once v3.6alpha has been moved to the trunk.

#1239 fixed unallocated arrays in daily mean to diurnal cycle code with passive tracers cbricaud acc
Description

There is a problem with unallocated arrays when using ln_dm2dc = .TRUE. with passive tracers (key_top). Logicals ltrcdm2dc and ltrcdm2dc_ice are set in trcini and iceini_2 respectively. Both of these occur in the calling sequence after they are needed to allocate qsr_mean (sbc_oce.F90) and qsr_ice_mean (sbc_ice.F90) respectively. Can be worked around by setting both in sbc_oce, e.g.:

USE ice_2, ONLY : ltrcdm2dc_ice
.
.
.
#if defined key_top
      ltrcdm2dc = (ln_dm2dc .AND. ln_blk_core .AND. nn_ice==2)
      ltrcdm2dc_ice = ltrcdm2dc
#endif

but there may be a more elegant solution.

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Note: See TracQuery for help on using queries.