Package org.orekit.files.ccsds.ndm.odm
Class SpacecraftParameters
- java.lang.Object
-
- org.orekit.files.ccsds.section.CommentsContainer
-
- org.orekit.files.ccsds.ndm.odm.SpacecraftParameters
-
public class SpacecraftParameters extends CommentsContainer implements Data
Container for spacecraft parameters.- Since:
- 6.1
- Author:
- sports
-
-
Constructor Summary
Constructors Constructor Description SpacecraftParameters()
Create an empty state data set.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getDragArea()
Get the drag area.double
getDragCoeff()
Get the drag coefficient.double
getMass()
Get the spacecraft mass.double
getSolarRadArea()
Get the solar radiation pressure area.double
getSolarRadCoeff()
Get the solar radiation pressure coefficient.void
setDragArea(double dragArea)
Set the drag area.void
setDragCoeff(double dragCoeff)
Set the drag coefficient.void
setMass(double mass)
Set the spacecraft mass.void
setSolarRadArea(double solarRadArea)
Set the solar radiation pressure area.void
setSolarRadCoeff(double solarRadCoeff)
Get the solar radiation pressure coefficient.void
validate(double version)
Check is all mandatory entries have been initialized.-
Methods inherited from class org.orekit.files.ccsds.section.CommentsContainer
acceptComments, addComment, checkAllowed, checkNotNaN, checkNotNegative, checkNotNull, getComments, refuseFurtherComments, setComments
-
-
-
-
Method Detail
-
validate
public void validate(double version)
Check is all mandatory entries have been initialized.This method should throw an exception if some mandatory entries are missing or not compatible with version number.
- Specified by:
validate
in interfaceSection
- Overrides:
validate
in classCommentsContainer
- Parameters:
version
- format version
-
getMass
public double getMass()
Get the spacecraft mass.- Returns:
- the spacecraft mass
-
setMass
public void setMass(double mass)
Set the spacecraft mass.- Parameters:
mass
- the spacecraft mass to be set
-
getSolarRadArea
public double getSolarRadArea()
Get the solar radiation pressure area.- Returns:
- the solar radiation pressure area
-
setSolarRadArea
public void setSolarRadArea(double solarRadArea)
Set the solar radiation pressure area.- Parameters:
solarRadArea
- the area to be set
-
getSolarRadCoeff
public double getSolarRadCoeff()
Get the solar radiation pressure coefficient.- Returns:
- the solar radiation pressure coefficient
-
setSolarRadCoeff
public void setSolarRadCoeff(double solarRadCoeff)
Get the solar radiation pressure coefficient.- Parameters:
solarRadCoeff
- the coefficient to be set
-
getDragArea
public double getDragArea()
Get the drag area.- Returns:
- the drag area
-
setDragArea
public void setDragArea(double dragArea)
Set the drag area.- Parameters:
dragArea
- the area to be set
-
getDragCoeff
public double getDragCoeff()
Get the drag coefficient.- Returns:
- the drag coefficient
-
setDragCoeff
public void setDragCoeff(double dragCoeff)
Set the drag coefficient.- Parameters:
dragCoeff
- the coefficient to be set
-
-