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 (16 - 18 of 2547)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Ticket Resolution Summary Owner Reporter
#862 fixed LIM2 VP/EVP initialisation and allocation corrections acc acc
Description

A couple of minor corrections are needed to the LIM2 code. The first fixes an allocation problem in iceini_2.F90 when using key_lim2_vp:

--- NEMOGCM/NEMO/LIM_SRC_2/iceini_2.F90 (revision 2853)
+++ NEMOGCM/NEMO/LIM_SRC_2/iceini_2.F90 (working copy)
@@ -22,7 +22,8 @@
    USE dom_ice_2        ! LIM2 ice domain
    USE par_ice_2        ! LIM2 parameters
    USE thd_ice_2        ! LIM2 thermodynamical variables
-   USE limrhg           ! LIM2 rheology
+   USE limrhg           ! LIM2 EVP rheology
+   USE limrhg_2         ! LIM2  VP rheology (requires "key_lim2_vp")
    USE ice_2            ! LIM2 ice variable
    USE limmsh_2         ! LIM2 mesh
    USE limistate_2      ! LIM2 initial state
@@ -64,6 +65,8 @@
       ierr = ierr + thd_ice_alloc_2()       ! thermodynamics
 #if ! defined key_lim2_vp
       ierr = ierr + lim_rhg_alloc  ()
+#else
+      ierr = ierr + lim_rhg_alloc_2  ()
 #endif

The second initialises stress1_i, stress_2_i and stress12_i correctly when starting from stratch (& using EVP rheology). Failure to do so leads to NaNs? on some systems/configurations:

--- NEMOGCM/NEMO/LIM_SRC_2/limistate_2.F90      (revision 2853)
+++ NEMOGCM/NEMO/LIM_SRC_2/limistate_2.F90      (working copy)
@@ -123,6 +123,11 @@
       sxxst (:,:)  = 0.e0
       syyst (:,:)  = 0.e0
       sxyst (:,:)  = 0.e0
+#if ! defined key_lim2_vp
+      stress1_i (:,:) = 0._wp                          ! EVP rheology
+      stress2_i (:,:) = 0._wp
+      stress12_i(:,:) = 0._wp
+#endif

These changes have been made to the trunk at revision 2855

#874 fixed New branch for the merge of all NOC 2011 developments acc acc
Description

Created a new branch for the merge of all NOC 2011 developments.

Step1. Is a copy of the trunk at the lowest revision number used by any of the branches to be merged.

The intention (subject to final acceptance of some branches) is to merge the following contributions:

dev_r2782_NOCS_Griffies dev_r2787_NOCS_NEPTUNE dev_r2802_NOCL_bfrimp dev_r2802_NOCL_prjhpg dev_r2802_NOCL_Smagorinsky dev_r2802_NOCL_vppm dev_r2802_NOCS_vvlfix dev_r2855_NOCS_mppsca

The starting point is, therefore, a copy of the trunk at revision 2782.

Further details of this merge will be documented on wiki:ticket/874_NOC_2011_MERGE? which will be updated as the merge proceeds.

#890 fixed Merging NOC and UKMO 2011 developments acc acc
Description

Creating a temporary branch for merging the 2011 developments from NOC and UKMO

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Note: See TracQuery for help on using queries.