Class PythonDiscreteTroposphericModel
- java.lang.Object
-
- org.orekit.models.earth.troposphere.PythonDiscreteTroposphericModel
-
- All Implemented Interfaces:
DiscreteTroposphericModel
,ParametersDriversProvider
public class PythonDiscreteTroposphericModel extends Object implements DiscreteTroposphericModel
-
-
Constructor Summary
Constructors Constructor Description PythonDiscreteTroposphericModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finalize()
Part of JCC Python interface to objectdouble[]
getParameters()
Get tropospheric model parameters.<T extends CalculusFieldElement<T>>
T[]getParameters(Field<T> field)
Get tropospheric model parameters.<T extends CalculusFieldElement<T>>
T[]getParameters_F(Field<T> field)
Get tropospheric model parameters.List<ParameterDriver>
getParametersDrivers()
Get the drivers for tropospheric model parameters.double
pathDelay(double elevation, GeodeticPoint point, double[] parameters, AbsoluteDate date)
Calculates the tropospheric path delay for the signal path from a ground station to a satellite.<T extends CalculusFieldElement<T>>
TpathDelay(T elevation, FieldGeodeticPoint<T> point, T[] parameters, FieldAbsoluteDate<T> date)
Calculates the tropospheric path delay for the signal path from a ground station to a satellite.<T extends CalculusFieldElement<T>>
TpathDelay_TTTF(T elevation, FieldGeodeticPoint<T> point, T[] parameters, FieldAbsoluteDate<T> date)
Calculates the tropospheric path delay for the signal path from a ground station to a satellite.void
pythonDecRef()
Part of JCC Python interface to objectlong
pythonExtension()
Part of JCC Python interface to objectvoid
pythonExtension(long pythonObject)
Part of JCC Python interface to object
-
-
-
Method Detail
-
pythonExtension
public void pythonExtension(long pythonObject)
Part of JCC Python interface to object
-
pythonExtension
public long pythonExtension()
Part of JCC Python interface to object
-
finalize
public void finalize() throws Throwable
Part of JCC Python interface to object
-
pythonDecRef
public void pythonDecRef()
Part of JCC Python interface to object
-
pathDelay
public double pathDelay(double elevation, GeodeticPoint point, double[] parameters, AbsoluteDate date)
Calculates the tropospheric path delay for the signal path from a ground station to a satellite. Extension point for Python.- Specified by:
pathDelay
in interfaceDiscreteTroposphericModel
- Parameters:
elevation
- the elevation of the satellite, in radiansheight
- the height of the station in m above sea levelparameters
- tropospheric model parameters.date
- current date- Returns:
- the path delay due to the troposphere in m
-
pathDelay
public <T extends CalculusFieldElement<T>> T pathDelay(T elevation, FieldGeodeticPoint<T> point, T[] parameters, FieldAbsoluteDate<T> date)
Calculates the tropospheric path delay for the signal path from a ground station to a satellite. Redirects to pathDelay_TTTF(...) for Python extension- Specified by:
pathDelay
in interfaceDiscreteTroposphericModel
- Type Parameters:
T
- type of the elements- Parameters:
elevation
- the elevation of the satellite, in radiansheight
- the height of the station in m above sea levelparameters
- tropospheric model parameters.date
- current date- Returns:
- the path delay due to the troposphere in m
-
pathDelay_TTTF
public <T extends CalculusFieldElement<T>> T pathDelay_TTTF(T elevation, FieldGeodeticPoint<T> point, T[] parameters, FieldAbsoluteDate<T> date)
Calculates the tropospheric path delay for the signal path from a ground station to a satellite. Extension point for Python. Called by pathDelay for this parameter set.- Parameters:
elevation
- the elevation of the satellite, in radiansheight
- the height of the station in m above sea levelparameters
- tropospheric model parameters.date
- current date- Returns:
- the path delay due to the troposphere in m
-
getParametersDrivers
public List<ParameterDriver> getParametersDrivers()
Get the drivers for tropospheric model parameters. Extension point for Python.- Specified by:
getParametersDrivers
in interfaceParametersDriversProvider
- Returns:
- drivers for tropospheric model parameters
-
getParameters
public double[] getParameters()
Get tropospheric model parameters. Extension point for Python.- Specified by:
getParameters
in interfaceDiscreteTroposphericModel
- Returns:
- tropospheric model parameters
-
getParameters
public <T extends CalculusFieldElement<T>> T[] getParameters(Field<T> field)
Get tropospheric model parameters. Extension point for Python.- Specified by:
getParameters
in interfaceDiscreteTroposphericModel
- Type Parameters:
T
- type of the elements- Parameters:
field
- field to which the elements belong- Returns:
- tropospheric model parameters
-
getParameters_F
public <T extends CalculusFieldElement<T>> T[] getParameters_F(Field<T> field)
Get tropospheric model parameters. Extension point for Python.- Parameters:
field
- field to which the elements belong- Returns:
- tropospheric model parameters
-
-