|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.orekit.forces.BoxAndSolarArraySpacecraft
public class BoxAndSolarArraySpacecraft
experimental class representing the features of a classical satellite with a convex body shape and rotating flat solar arrays.
As of 5.0, this class is still considered experimental, so use it with care.
The body can be either a simple parallelepipedic box aligned with spacecraft axes or a set of facets defined by their area and normal vector. This should handle accurately most spacecraft shapes.
The solar array rotation with respect to satellite body can be either the best lightning orientation (i.e. Sun exactly in solar array meridian plane defined by solar array rotation axis and solar array normal vector) or a rotation evolving linearly according to a start position and an angular rate (which can be set to 0 for non-rotating panels, which may occur in special modes or during contingencies).
This model does not take cast shadow between body and solar array into account.
Instances of this class are guaranteed to be immutable.
SphericalSpacecraft,
Serialized Form| Nested Class Summary | |
|---|---|
static class |
BoxAndSolarArraySpacecraft.Facet
Class representing a single facet of a convex spacecraft body. |
| Constructor Summary | |
|---|---|
BoxAndSolarArraySpacecraft(BoxAndSolarArraySpacecraft.Facet[] facets,
PVCoordinatesProvider sun,
double solarArrayArea,
org.apache.commons.math.geometry.Vector3D solarArrayAxis,
AbsoluteDate referenceDate,
org.apache.commons.math.geometry.Vector3D referenceNormal,
double rotationRate,
double dragCoeff,
double absorptionCoeff,
double reflectionCoeff)
Build a spacecraft model with linear rotation of solar array. |
|
BoxAndSolarArraySpacecraft(BoxAndSolarArraySpacecraft.Facet[] facets,
PVCoordinatesProvider sun,
double solarArrayArea,
org.apache.commons.math.geometry.Vector3D solarArrayAxis,
double dragCoeff,
double absorptionCoeff,
double reflectionCoeff)
Build a spacecraft model with best lightning of solar array. |
|
BoxAndSolarArraySpacecraft(double xLength,
double yLength,
double zLength,
PVCoordinatesProvider sun,
double solarArrayArea,
org.apache.commons.math.geometry.Vector3D solarArrayAxis,
AbsoluteDate referenceDate,
org.apache.commons.math.geometry.Vector3D referenceNormal,
double rotationRate,
double dragCoeff,
double absorptionCoeff,
double reflectionCoeff)
Build a spacecraft model with linear rotation of solar array. |
|
BoxAndSolarArraySpacecraft(double xLength,
double yLength,
double zLength,
PVCoordinatesProvider sun,
double solarArrayArea,
org.apache.commons.math.geometry.Vector3D solarArrayAxis,
double dragCoeff,
double absorptionCoeff,
double reflectionCoeff)
Build a spacecraft model with best lightning of solar array. |
|
| Method Summary | |
|---|---|
org.apache.commons.math.geometry.Vector3D |
dragAcceleration(SpacecraftState state,
double density,
org.apache.commons.math.geometry.Vector3D relativeVelocity)
Compute the acceleration due to drag. |
double |
getAbsorptionCoefficient()
Get the absorption coefficient. |
double |
getDragCoefficient()
Get the drag coefficient. |
org.apache.commons.math.geometry.Vector3D |
getNormal(SpacecraftState state)
Get solar array normal in spacecraft frame. |
double |
getReflectionCoefficient()
Get the specular reflection coefficient. |
org.apache.commons.math.geometry.Vector3D |
radiationPressureAcceleration(SpacecraftState state,
org.apache.commons.math.geometry.Vector3D flux)
Compute the acceleration due to radiation pressure. |
void |
setAbsorptionCoefficient(double value)
Set the absorption coefficient. |
void |
setDragCoefficient(double value)
Set the drag coefficient. |
void |
setReflectionCoefficient(double value)
Set the specular reflection coefficient. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public BoxAndSolarArraySpacecraft(double xLength,
double yLength,
double zLength,
PVCoordinatesProvider sun,
double solarArrayArea,
org.apache.commons.math.geometry.Vector3D solarArrayAxis,
double dragCoeff,
double absorptionCoeff,
double reflectionCoeff)
Solar arrays orientation will be such that at each time the Sun direction will always be in the solar array meridian plane defined by solar array rotation axis and solar array normal vector.
xLength - length of the body along its X axis (m)yLength - length of the body along its Y axis (m)zLength - length of the body along its Z axis (m)sun - sun modelsolarArrayArea - area of the solar array (m2)solarArrayAxis - solar array rotation axis in satellite framedragCoeff - drag coefficient (used only for drag)absorptionCoeff - absorption coefficient between 0.0 an 1.0
(used only for radiation pressure)reflectionCoeff - specular reflection coefficient between 0.0 an 1.0
(used only for radiation pressure)
public BoxAndSolarArraySpacecraft(BoxAndSolarArraySpacecraft.Facet[] facets,
PVCoordinatesProvider sun,
double solarArrayArea,
org.apache.commons.math.geometry.Vector3D solarArrayAxis,
double dragCoeff,
double absorptionCoeff,
double reflectionCoeff)
The spacecraft body is described by an array of surface vectors. Each facet of the body is describe by a vector normal to the facet (pointing outward of the spacecraft) and whose norm is the surface area in m2.
Solar arrays orientation will be such that at each time the Sun direction will always be in the solar array meridian plane defined by solar array rotation axis and solar array normal vector.
facets - body facets (only the facets with strictly positive area will be stored)sun - sun modelsolarArrayArea - area of the solar array (m2)solarArrayAxis - solar array rotation axis in satellite framedragCoeff - drag coefficient (used only for drag)absorptionCoeff - absorption coefficient between 0.0 an 1.0
(used only for radiation pressure)reflectionCoeff - specular reflection coefficient between 0.0 an 1.0
(used only for radiation pressure)
public BoxAndSolarArraySpacecraft(double xLength,
double yLength,
double zLength,
PVCoordinatesProvider sun,
double solarArrayArea,
org.apache.commons.math.geometry.Vector3D solarArrayAxis,
AbsoluteDate referenceDate,
org.apache.commons.math.geometry.Vector3D referenceNormal,
double rotationRate,
double dragCoeff,
double absorptionCoeff,
double reflectionCoeff)
Solar arrays orientation will be a regular rotation from the reference orientation at reference date and using a constant rotation rate.
xLength - length of the body along its X axis (m)yLength - length of the body along its Y axis (m)zLength - length of the body along its Z axis (m)sun - sun modelsolarArrayArea - area of the solar array (m2)solarArrayAxis - solar array rotation axis in satellite framereferenceDate - reference date for the solar array rotationreferenceNormal - direction of the solar array normal at reference date
in spacecraft framerotationRate - rotation rate of the solar array, may be 0 (rad/s)dragCoeff - drag coefficient (used only for drag)absorptionCoeff - absorption coefficient between 0.0 an 1.0
(used only for radiation pressure)reflectionCoeff - specular reflection coefficient between 0.0 an 1.0
(used only for radiation pressure)
public BoxAndSolarArraySpacecraft(BoxAndSolarArraySpacecraft.Facet[] facets,
PVCoordinatesProvider sun,
double solarArrayArea,
org.apache.commons.math.geometry.Vector3D solarArrayAxis,
AbsoluteDate referenceDate,
org.apache.commons.math.geometry.Vector3D referenceNormal,
double rotationRate,
double dragCoeff,
double absorptionCoeff,
double reflectionCoeff)
The spacecraft body is described by an array of surface vectors. Each facet of the body is describe by a vector normal to the facet (pointing outward of the spacecraft) and whose norm is the surface area in m2.
Solar arrays orientation will be a regular rotation from the reference orientation at reference date and using a constant rotation rate.
facets - body facets (only the facets with strictly positive area will be stored)sun - sun modelsolarArrayArea - area of the solar array (m2)solarArrayAxis - solar array rotation axis in satellite framereferenceDate - reference date for the solar array rotationreferenceNormal - direction of the solar array normal at reference date
in spacecraft framerotationRate - rotation rate of the solar array, may be 0 (rad/s)dragCoeff - drag coefficient (used only for drag)absorptionCoeff - absorption coefficient between 0.0 an 1.0
(used only for radiation pressure)reflectionCoeff - specular reflection coefficient between 0.0 an 1.0
(used only for radiation pressure)| Method Detail |
|---|
public org.apache.commons.math.geometry.Vector3D getNormal(SpacecraftState state)
throws OrekitException
state - current state information: date, kinematics, attitude
OrekitException - if sun direction cannot be computed in best lightning
configuration
public org.apache.commons.math.geometry.Vector3D dragAcceleration(SpacecraftState state,
double density,
org.apache.commons.math.geometry.Vector3D relativeVelocity)
throws OrekitException
The computation includes all spacecraft specific characteristics like shape, area and coefficients.
dragAcceleration in interface DragSensitivestate - current state information: date, kinematics, attitudedensity - atmospheric density at spacecraft positionrelativeVelocity - relative velocity of atmosphere with respect to spacecraft,
in the same inertial frame as spacecraft orbit (m/s)
OrekitException - if acceleration cannot be computed
public org.apache.commons.math.geometry.Vector3D radiationPressureAcceleration(SpacecraftState state,
org.apache.commons.math.geometry.Vector3D flux)
throws OrekitException
The computation includes all spacecraft specific characteristics like shape, area and coefficients.
radiationPressureAcceleration in interface RadiationSensitivestate - current state information: date, kinematics, attitudeflux - radiation flux in the same inertial frame as spacecraft orbit
OrekitException - if acceleration cannot be computedpublic void setAbsorptionCoefficient(double value)
setAbsorptionCoefficient in interface RadiationSensitivevalue - absorption coefficientpublic double getAbsorptionCoefficient()
getAbsorptionCoefficient in interface RadiationSensitivepublic void setReflectionCoefficient(double value)
setReflectionCoefficient in interface RadiationSensitivevalue - specular reflection coefficientpublic double getReflectionCoefficient()
getReflectionCoefficient in interface RadiationSensitivepublic void setDragCoefficient(double value)
setDragCoefficient in interface DragSensitivevalue - drag coefficientpublic double getDragCoefficient()
getDragCoefficient in interface DragSensitive
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||