Class TroposphericDelay
- java.lang.Object
-
- org.orekit.models.earth.troposphere.TroposphericDelay
-
public class TroposphericDelay extends Object
Container for tropospheric delay.- Since:
- 12.1
- Author:
- Luc Maisonobe
-
-
Constructor Summary
Constructors Constructor Description TroposphericDelay(double zh, double zw, double sh, double sw)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getDelay()
Get the total slanted delay (m).double
getSh()
Get slanted delay (m).double
getSw()
Get wet slanted delay (m).double
getZh()
Get hydrostatic zenith delay (m).double
getZw()
Get wet zenith delay (m).
-
-
-
Method Detail
-
getZh
public double getZh()
Get hydrostatic zenith delay (m).- Returns:
- hydrostatic zenith delay (m)
-
getZw
public double getZw()
Get wet zenith delay (m).- Returns:
- wet zenith delay (m)
-
getSh
public double getSh()
Get slanted delay (m).- Returns:
- slanted delay (m)
-
getSw
public double getSw()
Get wet slanted delay (m).- Returns:
- wet slanted delay (m)
-
getDelay
public double getDelay()
Get the total slanted delay (m).- Returns:
- total slanted delay (m)
-
-