Package org.orekit.forces.radiation
Class IsotropicRadiationClassicalConvention
- java.lang.Object
-
- org.orekit.forces.radiation.IsotropicRadiationClassicalConvention
-
- All Implemented Interfaces:
RadiationSensitive
public class IsotropicRadiationClassicalConvention extends Object implements RadiationSensitive
This class represents the features of a simplified spacecraft.This model uses the classical thermo-optical coefficients Ca for absorption, Cs for specular reflection and Kd for diffuse reflection. The equation Ca + Cs + Cd = 1 always holds.
A less standard set of coefficients α = Ca for absorption and τ = Cs/(1-Ca) for specular reflection is implemented in the sister class
IsotropicRadiationCNES95Convention
.- Since:
- 7.1
- Author:
- Luc Maisonobe
- See Also:
BoxAndSolarArraySpacecraft
,IsotropicDrag
,IsotropicRadiationCNES95Convention
-
-
Field Summary
-
Fields inherited from interface org.orekit.forces.radiation.RadiationSensitive
ABSORPTION_COEFFICIENT, REFLECTION_COEFFICIENT
-
-
Constructor Summary
Constructors Constructor Description IsotropicRadiationClassicalConvention(double crossSection, double ca, double cs)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ParameterDriver[]
getRadiationParametersDrivers()
Get the drivers for supported parameters.org.hipparchus.geometry.euclidean.threed.Vector3D
radiationPressureAcceleration(AbsoluteDate date, Frame frame, org.hipparchus.geometry.euclidean.threed.Vector3D position, org.hipparchus.geometry.euclidean.threed.Rotation rotation, double mass, org.hipparchus.geometry.euclidean.threed.Vector3D flux, double[] parameters)
Compute the acceleration due to radiation pressure.org.hipparchus.geometry.euclidean.threed.FieldVector3D<org.hipparchus.analysis.differentiation.DerivativeStructure>
radiationPressureAcceleration(AbsoluteDate date, Frame frame, org.hipparchus.geometry.euclidean.threed.Vector3D position, org.hipparchus.geometry.euclidean.threed.Rotation rotation, double mass, org.hipparchus.geometry.euclidean.threed.Vector3D flux, double[] parameters, String paramName)
Compute the acceleration due to radiation pressure, with parameters derivatives.<T extends org.hipparchus.RealFieldElement<T>>
org.hipparchus.geometry.euclidean.threed.FieldVector3D<T>radiationPressureAcceleration(FieldAbsoluteDate<T> date, Frame frame, org.hipparchus.geometry.euclidean.threed.FieldVector3D<T> position, org.hipparchus.geometry.euclidean.threed.FieldRotation<T> rotation, T mass, org.hipparchus.geometry.euclidean.threed.FieldVector3D<T> flux, T[] parameters)
Compute the acceleration due to radiation pressure.
-
-
-
Constructor Detail
-
IsotropicRadiationClassicalConvention
public IsotropicRadiationClassicalConvention(double crossSection, double ca, double cs)
Simple constructor.- Parameters:
crossSection
- Surface (m²)ca
- absorption coefficient Ca between 0.0 an 1.0cs
- specular reflection coefficient Cs between 0.0 an 1.0
-
-
Method Detail
-
getRadiationParametersDrivers
public ParameterDriver[] getRadiationParametersDrivers()
Get the drivers for supported parameters.- Specified by:
getRadiationParametersDrivers
in interfaceRadiationSensitive
- Returns:
- parameters drivers
-
radiationPressureAcceleration
public org.hipparchus.geometry.euclidean.threed.Vector3D radiationPressureAcceleration(AbsoluteDate date, Frame frame, org.hipparchus.geometry.euclidean.threed.Vector3D position, org.hipparchus.geometry.euclidean.threed.Rotation rotation, double mass, org.hipparchus.geometry.euclidean.threed.Vector3D flux, double[] parameters)
Compute the acceleration due to radiation pressure.- Specified by:
radiationPressureAcceleration
in interfaceRadiationSensitive
- Parameters:
date
- current dateframe
- inertial reference frame for state (both orbit and attitude)position
- position of spacecraft in reference framerotation
- orientation (attitude) of the spacecraft with respect to reference framemass
- current massflux
- 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 org.hipparchus.RealFieldElement<T>> org.hipparchus.geometry.euclidean.threed.FieldVector3D<T> radiationPressureAcceleration(FieldAbsoluteDate<T> date, Frame frame, org.hipparchus.geometry.euclidean.threed.FieldVector3D<T> position, org.hipparchus.geometry.euclidean.threed.FieldRotation<T> rotation, T mass, org.hipparchus.geometry.euclidean.threed.FieldVector3D<T> flux, T[] parameters)
Compute the acceleration due to radiation pressure.- Specified by:
radiationPressureAcceleration
in interfaceRadiationSensitive
- Type Parameters:
T
- extends RealFieldElement- Parameters:
date
- current dateframe
- inertial reference frame for state (both orbit and attitude)position
- position of spacecraft in reference framerotation
- orientation (attitude) of the spacecraft with respect to reference framemass
- current massflux
- 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 org.hipparchus.geometry.euclidean.threed.FieldVector3D<org.hipparchus.analysis.differentiation.DerivativeStructure> radiationPressureAcceleration(AbsoluteDate date, Frame frame, org.hipparchus.geometry.euclidean.threed.Vector3D position, org.hipparchus.geometry.euclidean.threed.Rotation rotation, double mass, org.hipparchus.geometry.euclidean.threed.Vector3D flux, double[] parameters, String paramName)
Compute the acceleration due to radiation pressure, with parameters derivatives.- Specified by:
radiationPressureAcceleration
in interfaceRadiationSensitive
- Parameters:
date
- current dateframe
- inertial reference frame for state (both orbit and attitude)position
- position of spacecraft in reference framerotation
- orientation (attitude) of the spacecraft with respect to reference framemass
- current massflux
- radiation flux in the same inertial frame as spacecraft orbitparameters
- values of the force model parametersparamName
- name of the parameter with respect to which derivatives are required- Returns:
- spacecraft acceleration in the same inertial frame as spacecraft orbit (m/s²)
-
-