Opened 8 years ago
Closed 6 years ago
#214 closed defect (fixed)
Error in histdef snowmelt (ioipslctrl.f90/ioipslctrl_history)
Reported by: | maignan | Owned by: | jgipsl |
---|---|---|---|
Priority: | major | Milestone: | IPSLCM6.v1 |
Component: | Physical processes | Version: | trunc |
Keywords: | Cc: |
Description
- Dantec-Nedelec has reported errors in the 'snowmelt' histdef: units and operations are wrong:
CALL histdef(hist_id, 'snowmelt', 'snow melt', 'kg/m2', & & iim,jjm, hori_id, 1,1,1, -99, 32, avescatter(6), dt,dw) ... CALL histdef(hist2_id, 'snowmelt', 'snow melt', 'kg/m2', & & iim,jjm, hori_id2, 1,1,1, -99, 32, avescatter2(6), dt, dw2)
should be corrected in:
CALL histdef(hist_id, 'snowmelt', 'snow melt', 'mm/d', & & iim,jjm, hori_id, 1,1,1, -99, 32, fluxop(6), dt,dw) ... CALL histdef(hist2_id, 'snowmelt', 'snow melt', 'mm/d', & & iim,jjm, hori_id2, 1,1,1, -99, 32, fluxop2(6), dt, dw2)
to be similar to 'runoff' for example:
CALL histdef(hist_id, 'runoff', 'Surface runoff', 'mm/d', & & iim,jjm, hori_id, 1,1,1, -99, 32, fluxop(2), dt,dw)
Change History (2)
comment:1 Changed 7 years ago by jgipsl
- Owner changed from somebody to jgipsl
- Status changed from new to accepted
comment:2 Changed 6 years ago by jgipsl
- Resolution set to fixed
- Status changed from accepted to closed
Note: See
TracTickets for help on using
tickets.
done in trunk rev [4587]