Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Méso-NH code
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RODIER Quentin
Méso-NH code
Commits
03652a5e
Commit
03652a5e
authored
10 years ago
by
Gaelle Tanguy
Committed by
WAUTELET Philippe
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
O.CAUMONT 10/04/2014 :correction of a scientific pb for ZDR
parent
075fe18b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/MNH/radar_rain_ice.f90
+19
-12
19 additions, 12 deletions
src/MNH/radar_rain_ice.f90
with
19 additions
and
12 deletions
src/MNH/radar_rain_ice.f90
+
19
−
12
View file @
03652a5e
...
...
@@ -83,6 +83,7 @@ END MODULE MODI_RADAR_RAIN_ICE
!! 19/05/04 (JP Pinty) add ZDR and KDP for raindops at 10.71 cm
!! J.-P. Chaboureau 17/06/10 bug correction in reflectivity calculation of icy hydrometeors
!! J.-P. Chaboureau 03/02/12 set undef values for radar reflectivities
!! O. Caumont 09/04/14 correction of ZDR calculation
!!
!-------------------------------------------------------------------------------
!
...
...
@@ -150,9 +151,10 @@ LOGICAL :: GFLAG ! Logical flag for printing the constatnts on the output
! listing
!
REAL
::
ZR0
,
ZR1
,
ZR2
! r(D) parameters
REAL
::
ZREXP
,
ZSCALE
! parameters to compute Zhh from Zvv
REAL
::
Z1
,
Z2
! expansion coefficients
!
!REAL :: ZREXP, ZSCALE ! parameters to compute Zhh from Zvv
REAL
::
Z1
,
Z2
,
Z3
! expansion coefficients
!
INTEGER
::
II
,
IJ
,
IK
!-------------------------------------------------------------------------------
!
!
...
...
@@ -199,10 +201,13 @@ IF (SIZE(PRT,4) >= 3) THEN
ZR1
=
-0.144E2
ZR2
=
-1.03E4
!
ZREXP
=
7.0
/
3.0
ZSCALE
=
ZR0
**
ZREXP
Z1
=
ZREXP
*
(
ZR1
/
ZR0
)
Z2
=
ZREXP
*
(
ZR2
/
ZR0
)
+
ZREXP
*
(
ZREXP
-1.0
)
*
0.5
*
(
ZR1
/
ZR0
)
**
2
! ZREXP = 7.0/3.0
! ZSCALE = ZR0**ZREXP
! Z1 = ZREXP*(ZR1/ZR0)
! Z2 = ZREXP*(ZR2/ZR0)+ZREXP*(ZREXP-1.0)*0.5*(ZR1/ZR0)**2
Z1
=
.97
Z2
=
.64
Z3
=
7.8
!
ZLBDA
(:,:,:)
=
0.0
IF
(
SIZE
(
PRT
,
4
)
==
3
)
THEN
...
...
@@ -218,11 +223,13 @@ IF (SIZE(PRT,4) >= 3) THEN
ZLBDA
(:,:,:)
=
XLBR
*
(
PRHODREF
(:,:,:)
*
PRT
(:,:,:,
3
)
)
**
XLBEXR
PRARE
(:,:,:)
=
1.E18
*
XCCR
*
(
ZLBDA
(:,:,:)
**
(
ZCXR
-6.0
))
*
MOMG
(
XALPHAR
,
XNUR
,
6.0
)
PVDOP
(:,:,:)
=
1.E18
*
XCCR
*
XCR
*
(
ZLBDA
(:,:,:)
**
(
ZCXR
-6.0
-
XDR
))
&
*
MOMG
(
XALPHAR
,
XNUR
,
6.0
+
XDR
)
PRZDR
(:,:,:)
=
ZSCALE
*
(
1.0
&
+
Z1
*
(
MOMG
(
XALPHAR
,
XNUR
,
7.0
)/
MOMG
(
XALPHAR
,
XNUR
,
6.0
))
*
(
1.0
/
ZLBDA
(:,:,:))
&
+
Z2
*
(
MOMG
(
XALPHAR
,
XNUR
,
8.0
)/
MOMG
(
XALPHAR
,
XNUR
,
6.0
))
*
(
1.0
/
ZLBDA
(:,:,:)
**
2
))
PRZDR
(:,:,:)
=
-10.0
*
LOG10
(
PRZDR
(:,:,:)
)
! now in dBZ
*
MOMG
(
XALPHAR
,
XNUR
,
6.0
+
XDR
)
! PRZDR(:,:,:) = ZSCALE*(1.0 &
! +Z1*(MOMG(XALPHAR,XNUR,7.0)/MOMG(XALPHAR,XNUR,6.0))*(1.0/ZLBDA(:,:,:)) &
! +Z2*(MOMG(XALPHAR,XNUR,8.0)/MOMG(XALPHAR,XNUR,6.0))*(1.0/ZLBDA(:,:,:)**2))
PRZDR
(:,:,:)
=
Z1
+
Z2
*
(
PRHODREF
(:,:,:)
*
PRT
(:,:,:,
3
))
**
(
-
XLBEXR
)
+
Z3
*
(
PRHODREF
(:,:,:)
*
PRT
(:,:,:,
3
))
**
(
-2.
*
XLBEXR
)
! PRZDR(:,:,:) = -10.0*LOG10( PRZDR(:,:,:) ) ! now in dBZ
PRZDR
(:,:,:)
=
10.0
*
LOG10
(
PRZDR
(:,:,:)
)
! now in dBZ
PRKDP
(:,:,:)
=
6.7E3
*
(
PRHODREF
(:,:,:)
*
PRT
(:,:,:,
3
)
)
*
&
(
-
ZR1
*
(
MOMG
(
XALPHAR
,
XNUR
,
4.0
)/
MOMG
(
XALPHAR
,
XNUR
,
3.0
))
*
(
1.0
/
ZLBDA
(:,:,:))
&
-
ZR2
*
(
MOMG
(
XALPHAR
,
XNUR
,
5.0
)/
MOMG
(
XALPHAR
,
XNUR
,
3.0
))
*
(
1.0
/
ZLBDA
(:,:,:)
**
2
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment