Rain Rate Computation for S-PolKa in DYNAMO

Introduction

Instantaneous rain rate estimators were computed by five different methods in real time. A rain rate estimate was determined for every gate (every beam, every tilt). Gate-by-gate time integration of a rain rate for the lowest tilt will provide an estimate of total accumulated rainfall over the region covered by the S-Pol radar. Rain rates in non-liquid precipitation areas should be ignored as they will be in error (i.e., ignore any values about the freezing level).

Clutter-filtered S-band horizontal reflectivity was used in computations. When Zdr is used, this is the clutter-filtered, bias-removed Zdr. KDP is also the clutter-removed S-band value.

Both ZH and ZDR are preprocessed through application of an along-beam, 5-gate median filter (the quantities are filtered independently, even when used in a relationship such as the Z-ZDR rain rate estimate). KDP is derived from PhiDP after application of a 21-gate, along beam, iterative finite impulse response filter, with slope interval selection based upon reflectivity intensity (Hubbert and Bringi 1995).

Rain rates are in mm/hr. Literature references are provided at the end of this page. For an excellent review of radar estimated precipitation rates, see Brandes, 2000.

Note: rain rates will be re-processed following any final corrections to the radar calibration or Zdr bias.

Computations

The following summary of rain rate computations has been provided by Mike Dixon. In the equations:

Coefficients in the equations have been selected from previous studies of tropical rainfall.

Simple Z-R Relationship

Coefficients are from M. Katsumata and his MISMO analysis (private communication w/ C. Schumacher)

   RATE_ZH = zh_aa * (ZH ** zh_bb)

  where

    zh_aa = 0.027366
    zh_bb = 0.69444

	 

Rate from Z and Zdr

For the reprocessed rain rate, it was found that the Brandes, et al. (2002) formulation produced more consistent results for the tropical Maldives environment than the in-field, real-time formulation. See Brandes, et al., eqn. 10. Note that the form of the equation used for the Z/Zdr relation is very sensitive to the value of the coefficients, particularly for low rain rates.

  ZDR is a linear ratio - (ZH / ZV).

    RATE_Z_ZDR = zzdr_aa * (ZH ** zzdr_bb) * (ZDR ** zzdr_cc)

  where

    zzdr_aa = 0.00746
    zzdr_bb = 0.945
    zzdr_cc = -4.76

	 

Depricated, used for in-field estimate, only. The following equation was used for the real-time precip estimate, but not for distribution with the final dataset. From Sachidananda and Zrnic, 1987:

  ZDR is a linear ratio - (ZH / ZV).

    RATE_Z_ZDR = zzdr_aa * (ZH ** zzdr_bb) * (ZDR ** zzdr_cc)

  where

    zzdr_aa = 0.00684
    zzdr_bb = 1
    zzdr_cc = -4.86

	 

Rate from KDP

From Sachidananda and Zrnic, 1987.

  KDP in deg/km.

    RATE_KDP = sign(KDP) * kdp_aa * (|KDP| ** kdp_bb).

  where

    kdp_aa = 40.6
    kdp_bb = 0.866

	 

Rate from KDP and ZDR

Equation form from Ryzhkov and Zrnic, 1995, with coefficents determined by Brandes (personal communication w/ M. Dixon) for the tropical situation of CP2 radar and disdrometer data near Brisbane.

      RATE_KDP_ZDR =
        sign(KDP) * kdpzdr_aa * (|KDP| ** kdpzdr_bb) *
       (ZDR  ** kdpzdr_cc)

  where

    kdpzdr_aa = 136
    kdpzdr_bb = 0.968
    kdpzdr_cc = -2.86

	 

Hybrid Rate

The hybrid rate selects the "best" rain rate determination using logic similar to that set forth in Chandrasekar, et al (1990), Chadrasekar, et al. (1993), and extended by Ryzhkov, et al., 2005.

  RATE_HYBRID is computed following these rules:

    If      RATE_ZH    <= hybrid_aa, RATE_HYBRID = RATE_ZH.
    Else if RATE_Z_ZDR <= hybrid_bb, RATE_HYBRID = RATE_Z_ZDR.
    Else If RATE_Z_ZDR <= hybrid_cc, RATE_HYBRID = RATE_KDP_ZDR.
    Else if RATE_Z_ZDR >  hybrid_bb, RATE_HYBRID = RATE_KDP.

  where

    hybrid_aa = 10
    hybrid_bb = 50
    hybrid_cc = 100 
	 

Note: It has been noticed that the hybrid rate seems to overestimate the rate when ZDR is lower than expected. For this data set we might need to consider changing the hybrid thresholds to not use RATE_KDP_ZDR and use RATE_KDP only for the higher rates.

References