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.
#1801 (Total precipitation 'precip' never "iom_put" in coupled mode) – NEMO

Opened 7 years ago

Closed 7 years ago

Last modified 2 years ago

#1801 closed Bug (fixed)

Total precipitation 'precip' never "iom_put" in coupled mode

Reported by: laurent Owned by: nemo
Priority: low Milestone: 2015 release-3.6
Component: OCE Version: v3.6
Severity: Keywords: OPA XIOS coupled_mode precip v3.6
Cc:

Description

Context

When 'precip', the total precipitation (liquid+solid) is among the fields you wish to save, i.e 'precip' is mentioned in your XIOS output xml wishlist file).

'precip is correctly saved in forced mode thanks to the following line in sbcblk_core.F90:

CALL iom_put( 'precip' , tprecip * 86400.)

However, in coupled mode (ln_cpl=.TRUE.) it is not the case. There is simply no "CALL iom_put( 'precip' ,...)" anywhere... In the netcdf file, the field 'precip' is simply filled by 1.E+20...

Fix

Easy! Tested in EC-Earth.

Just add 1 line into sbccpl.F90 at line 1420 (branches/2015/nemo_v3_6_STABLE/NEMOGCM, rev 7326):

CALL iom_put( 'precip', frcv(jpr_rain)%z3(:,:,1) + frcv(jpr_snow)%z3(:,:,1) )

Commit History (1)

ChangesetAuthorTimeChangeLog
7478clem2016-12-08T12:36:44+01:00

correct ticket #1801

Change History (5)

comment:1 Changed 7 years ago by clem

  • Resolution set to fixed
  • Status changed from new to closed

done

comment:2 Changed 7 years ago by nemo

  • Keywords XIOS added; xios removed

comment:3 Changed 6 years ago by nemo

  • Keywords release-3.6* added

comment:4 Changed 6 years ago by nemo

  • Keywords release-3.6* removed

comment:5 Changed 2 years ago by nemo

  • Keywords OPA v3.6 added
Note: See TracTickets for help on using tickets.