Package org.orekit.forces.radiation
Class IsotropicRadiationSingleCoefficient
java.lang.Object
org.orekit.forces.radiation.IsotropicRadiationSingleCoefficient
- All Implemented Interfaces:
RadiationSensitive
This class represents the features of a simplified spacecraft.
This model uses a single coefficient cr, considered to be
a RadiationSensitive.REFLECTION_COEFFICIENT.
- Since:
- 7.1
- Author:
- Luc Maisonobe
- See Also:
-
Field Summary
Fields inherited from interface org.orekit.forces.radiation.RadiationSensitive
ABSORPTION_COEFFICIENT, GLOBAL_RADIATION_FACTOR, REFLECTION_COEFFICIENT -
Constructor Summary
ConstructorsConstructorDescriptionIsotropicRadiationSingleCoefficient(double crossSection, double cr) Constructor with reflection coefficient min/max set to ±∞.IsotropicRadiationSingleCoefficient(double crossSection, double cr, double crMin, double crMax) Constructor with reflection coefficient min/max set by user. -
Method Summary
Modifier and TypeMethodDescriptionGet the drivers for supported parameters.<T extends CalculusFieldElement<T>>
FieldVector3D<T> radiationPressureAcceleration(FieldSpacecraftState<T> state, FieldVector3D<T> flux, T[] parameters) Compute the acceleration due to radiation pressure.radiationPressureAcceleration(SpacecraftState state, Vector3D flux, double[] parameters) Compute the acceleration due to radiation pressure.
-
Constructor Details
-
IsotropicRadiationSingleCoefficient
public IsotropicRadiationSingleCoefficient(double crossSection, double cr) Constructor with reflection coefficient min/max set to ±∞.- Parameters:
crossSection- Surface (m²)cr- reflection coefficient
-
IsotropicRadiationSingleCoefficient
public IsotropicRadiationSingleCoefficient(double crossSection, double cr, double crMin, double crMax) Constructor with reflection coefficient min/max set by user.- Parameters:
crossSection- Surface (m²)cr- reflection coefficientcrMin- Minimum value of reflection coefficientcrMax- Maximum value of reflection coefficient
-
-
Method Details
-
getRadiationParametersDrivers
Get the drivers for supported parameters.- Specified by:
getRadiationParametersDriversin interfaceRadiationSensitive- Returns:
- parameters drivers
-
radiationPressureAcceleration
public Vector3D radiationPressureAcceleration(SpacecraftState state, Vector3D flux, double[] parameters) Compute the acceleration due to radiation pressure.- Specified by:
radiationPressureAccelerationin interfaceRadiationSensitive- Parameters:
state- current stateflux- radiation flux in the same inertial frame as spacecraft orbitparameters- values of the force model parameters- Returns:
- spacecraft acceleration in the same inertial frame as spacecraft orbit (m/s²)
-
radiationPressureAcceleration
public <T extends CalculusFieldElement<T>> FieldVector3D<T> radiationPressureAcceleration(FieldSpacecraftState<T> state, FieldVector3D<T> flux, T[] parameters) Compute the acceleration due to radiation pressure.- Specified by:
radiationPressureAccelerationin interfaceRadiationSensitive- Type Parameters:
T- extends CalculusFieldElement- Parameters:
state- current stateflux- radiation flux in the same inertial frame as spacecraft orbitparameters- values of the force model parameters- Returns:
- spacecraft acceleration in the same inertial frame as spacecraft orbit (m/s²)
-