public class IsotropicDrag extends Object implements DragSensitive
The model of this spacecraft is a simple spherical model, this means that all coefficients are constant and do not depend of the direction.
BoxAndSolarArraySpacecraft
,
IsotropicRadiationCNES95Convention
DRAG_COEFFICIENT, GLOBAL_DRAG_FACTOR, LIFT_RATIO
Constructor and Description |
---|
IsotropicDrag(double crossSection,
double dragCoeff)
Constructor with drag coefficient min/max set to ±∞.
|
IsotropicDrag(double crossSection,
double dragCoeff,
double dragCoeffMin,
double dragCoeffMax)
Constructor with drag coefficient min/max set by user.
|
Modifier and Type | Method and Description |
---|---|
<T extends org.hipparchus.CalculusFieldElement<T>> |
dragAcceleration(FieldSpacecraftState<T> state,
T density,
org.hipparchus.geometry.euclidean.threed.FieldVector3D<T> relativeVelocity,
T[] parameters)
Compute the acceleration due to drag.
|
org.hipparchus.geometry.euclidean.threed.Vector3D |
dragAcceleration(SpacecraftState state,
double density,
org.hipparchus.geometry.euclidean.threed.Vector3D relativeVelocity,
double[] parameters)
Compute the acceleration due to drag.
|
List<ParameterDriver> |
getDragParametersDrivers()
Get the drivers for supported parameters.
|
public IsotropicDrag(double crossSection, double dragCoeff)
crossSection
- Surface (m²)dragCoeff
- drag coefficientpublic IsotropicDrag(double crossSection, double dragCoeff, double dragCoeffMin, double dragCoeffMax)
crossSection
- Surface (m²)dragCoeff
- drag coefficientdragCoeffMin
- Minimum value of drag coefficientdragCoeffMax
- Maximum value of drag coefficientpublic List<ParameterDriver> getDragParametersDrivers()
getDragParametersDrivers
in interface DragSensitive
public org.hipparchus.geometry.euclidean.threed.Vector3D dragAcceleration(SpacecraftState state, double density, org.hipparchus.geometry.euclidean.threed.Vector3D relativeVelocity, double[] parameters)
The computation includes all spacecraft specific characteristics like shape, area and coefficients.
dragAcceleration
in interface DragSensitive
state
- current statedensity
- atmospheric density at spacecraft positionrelativeVelocity
- relative velocity of atmosphere with respect to spacecraft,
in the same inertial frame as spacecraft orbit (m/s)parameters
- values of the force model parameterspublic <T extends org.hipparchus.CalculusFieldElement<T>> org.hipparchus.geometry.euclidean.threed.FieldVector3D<T> dragAcceleration(FieldSpacecraftState<T> state, T density, org.hipparchus.geometry.euclidean.threed.FieldVector3D<T> relativeVelocity, T[] parameters)
The computation includes all spacecraft specific characteristics like shape, area and coefficients.
dragAcceleration
in interface DragSensitive
T
- instance of a CalculusFieldElementstate
- current statedensity
- atmospheric density at spacecraft positionrelativeVelocity
- relative velocity of atmosphere with respect to spacecraft,
in the same inertial frame as spacecraft orbit (m/s)parameters
- values of the force model parametersCopyright © 2002-2023 CS GROUP. All rights reserved.