public interface TroposphericCorrection extends Serializable
| Modifier and Type | Field and Description |
|---|---|
static double |
ABSOLUTE_ZERO
Absolute zero for temperatures.
|
static double |
H0
Standard reference altitude.
|
static double |
P0
Standard reference pressure.
|
static double |
RH0
Standard reference humidity rate.
|
static double |
T0
Standard reference temperature.
|
| Modifier and Type | Method and Description |
|---|---|
double |
computeSignalDelay(double elevation)
Calculates the tropospheric signal delay for the signal path from a
ground station to a satellite.
|
static double[] |
computeStandardValues(double altitude)
Computes standard model values [T, P, R] for provided altitude with standard reference values [T0, P0, RH0]
provided by tropospheric models :
T = temperature [K] - T0 = 18 degree Celsius
P = pressure [Pa] - P0 = 101325 Pa
RH = humidity rate [%] in [0, 1] - RH0 = 50%
|
static double[] |
computeStandardValues(double t0,
double p0,
double rh0,
double h0,
double altitude)
Computes standard model values [T, P, RH] for provided altitude given reference values [T0, P0, RH0 H0] with:
T = temperature [K]
P = pressure [Pa]
RH = humidity rate [%] in [0, 1]
|
static final double T0
static final double P0
static final double RH0
static final double H0
static final double ABSOLUTE_ZERO
double computeSignalDelay(double elevation)
elevation - the elevation of the satellite [rad]static double[] computeStandardValues(double t0,
double p0,
double rh0,
double h0,
double altitude)
t0 - reference temperature [K]p0 - reference pressure [Pa]rh0 - reference humidity rate [%] in [0, 1]h0 - reference altitude [m]altitude - altitude for which values [T, P, RH] should be returnedstatic double[] computeStandardValues(double altitude)
altitude - altitude for which values [T, P, RH] should be returnedCopyright © 2022 CNES. All rights reserved.