Package org.orekit.files.ccsds.ndm.cdm
Class AdditionalCovarianceMetadata
- java.lang.Object
-
- org.orekit.files.ccsds.section.CommentsContainer
-
- org.orekit.files.ccsds.ndm.cdm.AdditionalCovarianceMetadata
-
- All Implemented Interfaces:
Section
public class AdditionalCovarianceMetadata extends CommentsContainer
Container for the additional covariance metadata (optional).
-
-
Constructor Summary
Constructors Constructor Description AdditionalCovarianceMetadata()
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getcScaleFactor()
Get the (median) suggested covariance scale factor.double
getcScaleFactorMax()
Get the maximum suggested covariance scale factor.double
getcScaleFactorMin()
Get the minimum suggested covariance scale factor.double[]
getDcpSensitivityVectorPosition()
Get the DCP sensitivity vector (position errors at TCA).double[]
getDcpSensitivityVectorVelocity()
Get the DCP sensitivity vector (velocity errors at TCA).double
getDensityForecastUncertainty()
Get the atmospheric density forecast error.String
getScreeningDataSource()
Get the source (or origin) of the specific orbital data for this object.void
setcScaleFactor(double cScaleFactor)
Set the (median) suggested covariance scale factor.void
setcScaleFactorMax(double cScaleFactorMax)
set the maximum suggested covariance scale factor.void
setcScaleFactorMin(double cScaleFactorMin)
Set the minimum suggested covariance scale factor.void
setDcpSensitivityVectorPosition(double[] dcpSensitivityVectorPosition)
Set the DCP sensitivity vector (position errors at TCA).void
setDcpSensitivityVectorVelocity(double[] dcpSensitivityVectorVelocity)
Set the DCP sensitivity vector (velocity errors at TCA).void
setDensityForecastUncertainty(double densityForecastUncertainty)
Set the atmospheric density forecast error.void
setScreeningDataSource(String screeningDataSource)
Set the source (or origin) of the specific orbital data for this object.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
-
getDensityForecastUncertainty
public double getDensityForecastUncertainty()
Get the atmospheric density forecast error.- Returns:
- densityForecastUncertainty
-
setDensityForecastUncertainty
public void setDensityForecastUncertainty(double densityForecastUncertainty)
Set the atmospheric density forecast error.- Parameters:
densityForecastUncertainty
- the cScaleFactorMax to set
-
getcScaleFactorMin
public double getcScaleFactorMin()
Get the minimum suggested covariance scale factor.- Returns:
- the cScaleFactorMin
-
setcScaleFactorMin
public void setcScaleFactorMin(double cScaleFactorMin)
Set the minimum suggested covariance scale factor.- Parameters:
cScaleFactorMin
- the cScaleFactorMin to set
-
getcScaleFactor
public double getcScaleFactor()
Get the (median) suggested covariance scale factor.- Returns:
- the cScaleFactor
-
setcScaleFactor
public void setcScaleFactor(double cScaleFactor)
Set the (median) suggested covariance scale factor.- Parameters:
cScaleFactor
- the cScaleFactor to set
-
getcScaleFactorMax
public double getcScaleFactorMax()
Get the maximum suggested covariance scale factor.- Returns:
- the cScaleFactorMax
-
setcScaleFactorMax
public void setcScaleFactorMax(double cScaleFactorMax)
set the maximum suggested covariance scale factor.- Parameters:
cScaleFactorMax
- the cScaleFactorMax to set
-
getScreeningDataSource
public String getScreeningDataSource()
Get the source (or origin) of the specific orbital data for this object.- Returns:
- the screeningDataSource
-
setScreeningDataSource
public void setScreeningDataSource(String screeningDataSource)
Set the source (or origin) of the specific orbital data for this object.- Parameters:
screeningDataSource
- the screeningDataSource to set
-
getDcpSensitivityVectorPosition
public double[] getDcpSensitivityVectorPosition()
Get the DCP sensitivity vector (position errors at TCA).- Returns:
- the dcpSensitivityVectorPosition
-
setDcpSensitivityVectorPosition
public void setDcpSensitivityVectorPosition(double[] dcpSensitivityVectorPosition)
Set the DCP sensitivity vector (position errors at TCA).- Parameters:
dcpSensitivityVectorPosition
- the dcpSensitivityVectorPosition to set
-
getDcpSensitivityVectorVelocity
public double[] getDcpSensitivityVectorVelocity()
Get the DCP sensitivity vector (velocity errors at TCA).- Returns:
- the dcpSensitivityVectorVelocity
-
setDcpSensitivityVectorVelocity
public void setDcpSensitivityVectorVelocity(double[] dcpSensitivityVectorVelocity)
Set the DCP sensitivity vector (velocity errors at TCA).- Parameters:
dcpSensitivityVectorVelocity
- the dcpSensitivityVectorVelocity to set
-
-