/* Copyright 2002-2017 CS Systèmes d'Information * Licensed to CS Systèmes d'Information (CS) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * CS licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.orekit.forces.drag.atmosphere; import java.io.Serializable; import org.orekit.errors.OrekitException; import org.orekit.time.AbsoluteDate; /** Interface for solar activity and magnetic activity data. * <p>Those data are needed by the JB2006 atmosphere model.</p> * @author Fabien Maussion */ public interface JB2006InputParameters extends Serializable { /** Gets the available data range minimum date. * @return the minimum date. */ AbsoluteDate getMinDate(); /** Gets the available data range maximum date. * @return the maximum date. */ AbsoluteDate getMaxDate(); /** Get the value of the instantaneous solar flux index * (1e<sup>-22</sup>*Watt/(m²*Hertz)). * Tabular time 1.0 day earlier. * @param date the current date * @return the instantaneous F10.7 index * @exception OrekitException if the date is out of range of available data */ double getF10(AbsoluteDate date) throws OrekitException; /** Get the value of the mean solar flux. * Averaged 81-day centered F10.7 B index on the input time. * @param date the current date * @return the mean solar flux F10.7B index * @exception OrekitException if the date is out of range of available data */ double getF10B(AbsoluteDate date) throws OrekitException; /** Get the EUV index (26-34 nm) scaled to F10. * Tabular time 1 day earlier. * @param date the current date * @return the the EUV S10 index * @exception OrekitException if the date is out of range of available data */ double getS10(AbsoluteDate date) throws OrekitException; /** Get the EUV 81-day averaged centered index. * @param date the current date * @return the the mean EUV S10B index * @exception OrekitException if the date is out of range of available data */ double getS10B(AbsoluteDate date) throws OrekitException; /** Get the MG2 index scaled to F10. * @param date the current date * @return the the EUV S10 index * @exception OrekitException if the date is out of range of available data */ double getXM10(AbsoluteDate date) throws OrekitException; /** Get the MG2 81-day average centered index. * Tabular time 5.0 days earlier. * @param date the current date * @return the the mean EUV S10B index * @exception OrekitException if the date is out of range of available data */ double getXM10B(AbsoluteDate date) throws OrekitException; /** Get the Geomagnetic planetary 3-hour index A<sub>p</sub>. * Tabular time 6.7 hours earlier. * @param date the current date * @return the A<sub>p</sub> index * @exception OrekitException if the date is out of range of available data */ double getAp(AbsoluteDate date) throws OrekitException; }