Opened 6 months ago
Closed 5 months ago
#2747 closed Defect (fixed)
averaged Kz in diawri.F90
Reported by: | cperruche | Owned by: | systeam |
---|---|---|---|
Priority: | low | Milestone: | |
Component: | DIA | Version: | v4.0.* |
Severity: | minor | Keywords: | averaged Kz |
Cc: |
Description
Context
correction specific to the write of averaged Kz in diawri.F90, such as for offline BIO.
Analysis
Kz must be log-transformed before being averaged. The logarithm to the base e (LOG) was used instead of the logarithm to the base 10 (LOG10)
Recommendation
change LOG by LOG10 in diawri.F90:
IF( iom_use('logavt') ) CALL iom_put( "logavt", LOG10( MAX( 1.e-20_wp, avt(:,:,:) ) ) )
IF( iom_use('logavs') ) CALL iom_put( "logavs", LOG10( MAX( 1.e-20_wp, avs(:,:,:) ) ) )
Commit History (1)
Changeset | Author | Time | ChangeLog |
---|---|---|---|
15593 | cetlod | 2021-12-13T12:01:58+01:00 | v40-HEAD : bugfix in output of Kz for Offline configuration's purposes, see ticket #2747 |
Change History (2)
comment:1 Changed 5 months ago by cetlod
comment:2 Changed 5 months ago by cetlod
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.
In 15593: