public interface DragSensitive
DragForce
Modifier and Type | Field and Description |
---|---|
static String |
DRAG_COEFFICIENT
Parameter name for drag coefficient.
|
static String |
GLOBAL_DRAG_FACTOR
Parameter name for global multiplicative factor.
|
static String |
LIFT_RATIO
Parameter name for lift ration enabling Jacobian processing.
|
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.
|
static final String GLOBAL_DRAG_FACTOR
static final String DRAG_COEFFICIENT
static final String LIFT_RATIO
The lift ratio is the proportion of atmosphere modecules that will experience specular reflection when hitting spacecraft instead of experiencing diffuse reflection. The ratio is between 0 and 1, 0 meaning there are no specular reflection, only diffuse reflection, and hence no lift effect.
List<ParameterDriver> getDragParametersDrivers()
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.
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 parameters<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.
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.