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 (55 - 57 of 2547)

Ticket Resolution Summary Owner Reporter
#55 fixed allow good date when perfoming restarts nemo ctlod
Description

The following lines must be added in daymod.F90 to have good date at initialization call daymod(-1) :

IF( ln_rstart ) THEN

rsec_year = REAL( nday_year ) * rday - rdttra(1) ! 00h 1st day of the current year rsec_month = REAL( nday ) * rday - rdttra(1) ! 00h 1st day of the current month rsec_day = REAL( nday ) * rday - rdttra(1) ! 00h of the current day

ELSE

rsec_year = REAL( nday_year - 1 ) * rday - rdttra(1) ! 00h 1st day of the current year rsec_month = REAL( nday - 1 ) * rday - rdttra(1) ! 00h 1st day of the current month rsec_day = - rdttra(1) ! 00h of the current day

ENDIF

#56 fixed Remove useless CALL day(nit000) in opa.F90 nemo ctlod
Description

Now initialization of the calendar is performed in istate.F90 module whith the calling sequence CALL day(-1) both when restart or not.

#57 fixed use (:,:) instead of (ji,jj) in the computation of p_qla(:,:) field in sbcblk_core.F90 nemo ctlod
Description

transform Latent heat flux above sea-ice:

p_qla(:,:) = rhoa * Ls * Cice * z_wnds_t(:,:) * ( 11637800. * EXP( -5897.8 / pst(:,:) ) / rhoa - sf(jp_humi)%fnow(ji,jj) )
into
p_qla(:,:) = rhoa * Ls * Cice * z_wnds_t(:,:) * ( 11637800. * EXP( -5897.8 / pst(:,:) ) / rhoa - sf(jp_humi)%fnow(:,:) )

Note: See TracQuery for help on using queries.