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 (61 - 63 of 2547)

Ticket Resolution Summary Owner Reporter
#61 fixed add new variables to allow users to better control compilation and jobs submission ctlod ctlod
Description

In the 2TEST/Makefile 2 variables are added to:
# control the kind of jobs to be lunched
# perform or not the check of memory size

#62 fixed problem in the computation of dqla_ice(:,:), fr1_i0(:,:) fr2_i0(:,:) fields in CORE bulk formulae ctlod ctlod
Description

2 Bugs reported by Steven Alderson 18 Jan. 2008 (NOCS):
# remove useless constant coefficient 0.98/(rhoa*rhoa) in the dqla_ice(:,:) field:
Must be:
dqla_ice(:,:) = -Ls*Cice*11637800 * (-5897.8)/(zsss(:,:)*zsss(:,:)) * exp(-5897.8/zsss(:,:)) * dUnormt(:,:)
instead of:
dqla_ice(:,:) = -Ls*Cice*0.98*11637800/(rhoa*rhoa) * (-5897.8)/(zsss(:,:)*zsss(:,:)) * exp(-5897.8/zsss(:,:)) * dUnormt(:,:)

# fraction of solar radiation penetration into sea-ice is wrong:
Must be:
catm1(:,:) = 1.0 - 0.3
fr1_i0(:,:) = (0.18 * (1.0-catm1(:,:)) + 0.35 * catm1(:,:) )
fr2_i0(:,:) = (0.82 * (1.0-catm1(:,:)) + 0.65 * catm1(:,:) )

instead of:
catm1(:,:) = 1.0 - 0.3
fr1_i0(:,:) = (0.18 * catm1(:,:) + 0.35 * flxnow(:,:,8) )
fr2_i0(:,:) = (0.82 * catm1(:,:) + 0.65 * flxnow(:,:,8) )

#63 fixed dev_001_SBC: problem in the computation of p_dqla(:,:), prf1(:,:) p_fr2(:,:) fields in CORE bulk formulae ctlod ctlod
Description

2 Bugs reported by Steven Alderson 18 Jan. 2008 (NOCS):

# remove useless constant coefficient 0.98/(rhoa*rhoa) in the zcoef_dqla coefficient use to compute p_dqla(:,:) field:
Must be:
zcoef_dqla = -Ls * Cice * 11637800. * (-5897.8)
instead of:
zcoef_dqla = -Ls * Cice * 0.98 * 11637800. / (rhoa*rhoa) * (-5897.8)

# fraction of solar radiation penetration into sea-ice is wrong:
Must be:
zcoef_frca = 1.0 - 0.3
p_fr1(:,:) = ( 0.18 * ( 1.0 - zcoef_frca ) + 0.35 * zcoef_frca )
p_fr2(:,:) = ( 0.82 * ( 1.0 - zcoef_frca ) + 0.65 * zcoef_frca )
instead of:
zcoef_frca = 1.0 - 0.3
p_fr1(:,:) = ( 0.18 * zcoef_fr12 + 0.35 * sf(jp_snow)%fnow(:,:) )
p_fr2(:,:) = ( 0.82 * zcoef_fr12 + 0.65 * sf(jp_snow)%fnow(:,:) )

Note: See TracQuery for help on using queries.