Opened 9 years ago

Closed 9 years ago

Last modified 8 years ago

#150 closed defect (fixed)

CMIP outputs missing in hydrol

Reported by: fcheruy Owned by: aducharne
Priority: trivial Milestone:
Component: Validation Version:
Keywords: standard CMIP outputs Cc:

Description

same as the one existing already in hydrolc:

! this is soil moisture in the top 10 cms

CALL histwrite_p(hist_id, 'mrsos', kjit, histvar, kjpindex, index)

! this is total soil moisture


CALL histwrite_p(hist_id, 'mrso', kjit, histvar, kjpindex, index)

CALL histwrite_p(hist_id, 'mrros', kjit, run_off_tot, kjpindex, index)

histvar(:)=run_off_tot(:)+drainage(:)
CALL histwrite_p(hist_id, 'mrro', kjit, histvar, kjpindex, index)

histvar(:)=(precip_rain(:)-SUM(precisol(:,:),dim=2))
CALL histwrite_p(hist_id, 'prveg', kjit, histvar, kjpindex, index)

The moisture in the upper 10 cm, is obtained as the total moisture (humtot) but only for the first 6 layers (present vertical discretisation, soil depth=2m).

Change History (6)

comment:1 Changed 9 years ago by aducharne

  • Owner changed from somebody to aducharne
  • Status changed from new to accepted

comment:2 Changed 9 years ago by jgipsl

Added localement, tests on going:

  • 'mrsos' added in hydrol
  • 'mrso' in hydrolc is the same as 'humtot' in hydrol, nothing done
  • 'preveg' added in hydrol

Remaining questions:

  • 'mrro' in hydrolc is the same as 'drainage+runoff'(or Qs+Qsb) in hydrol ??
  • 'mrros' in hydrolc is the same as 'runoff'(or Qs) in hydrol ??

comment:3 Changed 9 years ago by jgipsl

mrsos and preveg added in rev [2374] by FC and JG.

comment:4 Changed 9 years ago by aducharne

The answer to the remaining questions is YES.
For hydrol.f90:
mrro = 'drainage+runoff'(or Qs+Qsb)
mrros = 'runoff'(or Qs)

comment:5 Changed 9 years ago by jgipsl

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

All variables are present in hydrol and hydrolc. In hydrol they may require simple operations as changing unit or addition of 2 fields. All the output fields will have to be checked before CMORization for CMIP6. Nothing more done now because we do not know the requirements for CMIP6. All operations can be done in xml files.

Agnes, Frederique, Josefine

comment:6 Changed 8 years ago by jgipsl

We duplicated variables in hydrol.f90 to have the same names as for hydrolc.f90. In hydrolc we also added 2 variables missing in hist2_id file.

In both hydrology we now have the following output variables :

  • mrro (total runoff in mm/s)
  • mrros (surface runoff in mm/s)
  • mrso (total soil moisture in mm)
  • mrsos (total soil moisture of first 10cm, in mm)
  • prveg (Precipitation onto Canopy in mm/s)

Done in rev [2499]

Note: See TracTickets for help on using tickets.