Module JNISpice
Package spice.basic

Class GFRangeRateSearch


  • public class GFRangeRateSearch
    extends GFNumericSearch

    Class GFRangeRateSearch specifies a search for range rate events.

    Disclaimer

       THIS SOFTWARE AND ANY RELATED MATERIALS WERE CREATED BY THE
       CALIFORNIA INSTITUTE OF TECHNOLOGY (CALTECH) UNDER A U.S.
       GOVERNMENT CONTRACT WITH THE NATIONAL AERONAUTICS AND SPACE
       ADMINISTRATION (NASA). THE SOFTWARE IS TECHNOLOGY AND SOFTWARE
       PUBLICLY AVAILABLE UNDER U.S. EXPORT LAWS AND IS PROVIDED "AS-IS"
       TO THE RECIPIENT WITHOUT WARRANTY OF ANY KIND, INCLUDING ANY
       WARRANTIES OF PERFORMANCE OR MERCHANTABILITY OR FITNESS FOR A
       PARTICULAR USE OR PURPOSE (AS SET FORTH IN UNITED STATES UCC
       SECTIONS 2312-2313) OR FOR ANY PURPOSE WHATSOEVER, FOR THE
       SOFTWARE AND RELATED MATERIALS, HOWEVER USED.
    
       IN NO EVENT SHALL CALTECH, ITS JET PROPULSION LABORATORY, OR NASA
       BE LIABLE FOR ANY DAMAGES AND/OR COSTS, INCLUDING, BUT NOT
       LIMITED TO, INCIDENTAL OR CONSEQUENTIAL DAMAGES OF ANY KIND,
       INCLUDING ECONOMIC DAMAGE OR INJURY TO PROPERTY AND LOST PROFITS,
       REGARDLESS OF WHETHER CALTECH, JPL, OR NASA BE ADVISED, HAVE
       REASON TO KNOW, OR, IN FACT, SHALL KNOW OF THE POSSIBILITY.
    
       RECIPIENT BEARS ALL RISK RELATING TO QUALITY AND PERFORMANCE OF
       THE SOFTWARE AND ANY RELATED MATERIALS, AND AGREES TO INDEMNIFY
       CALTECH AND NASA FOR ALL THIRD-PARTY CLAIMS RESULTING FROM THE
       ACTIONS OF RECIPIENT IN THE USE OF THE SOFTWARE.
    

    Required_Reading

       GF
       NAIF_IDS
       SPK
       TIME
       WINDOWS
       

    Keywords

       EVENT
       GEOMETRY
       EPHEMERIS
       SEARCH
       WINDOW
       

    Parameters

    Exceptions

    Particulars

    Examples

       The numerical results shown for these examples may differ across
       platforms. The results depend on the SPICE kernels used as
       input, the compiler and supporting libraries, and the machine
       specific arithmetic implementation.
    
          Use the meta-kernel shown below to load the required SPICE
          kernels.
    
             KPL/MK
    
             File name: standard.tm
    
             This meta-kernel is intended to support operation of SPICE
             example programs. The kernels shown here should not be
             assumed to contain adequate or correct versions of data
             required by SPICE-based user applications.
    
             In order for an application to use this meta-kernel, the
             kernels referenced here must be present in the user's
             current working directory.
    
             The names and contents of the kernels referenced
             by this meta-kernel are as follows:
    
                File name                     Contents
                ---------                     --------
                de421.bsp                     Planetary ephemeris
                pck00009.tpc                  Planet orientation and
                                              radii
                naif0009.tls                  Leapseconds
    
             \begindata
    
                KERNELS_TO_LOAD = ( 'de421.bsp',
                                    'pck00009.tpc',
                                    'naif0009.tls'  )
    
             \begintext
    
       

    Example:

    
       Determine the time windows from January 1, 2007 UTC to
       April 1, 2007 UTC for which the sun-moon range rate satisfies the
       relation conditions with respect to a reference value of
       0.3365 km/s radians (this range rate known to occur within the
       search interval). Also determine the time windows corresponding
       to the local maximum and minimum range rate, and the absolute
       maximum and minimum range rate during the search interval.
    
       import spice.basic.*;
       import static spice.basic.GFConstraint.*;
       import static spice.basic.TimeConstants.*;
    
       class GFRangeRateSearch_t
          {
    
          static String[]   relation = { "LOCMIN", "ABSMIN",
                                         "LOCMAX", "ABSMAX" };
    
          static double[]   pos      = { 0., 0., 0. };
    
          //
          // Load the JNISpice shared library.
          //
          static { System.loadLibrary( "JNISpice" ); }
    
          public static void main ( String[] args )
             {
    
             try
                {
                final int         MAXWIN  = 5000;
                final String      TIMFMT  = "YYYY-MON-DD HR:MN:SC.###";
    
                //
                // Declare the needed windows. The confinement window
                // must be non-null, since we'll later call the "insert"
                // method to add values to it. The result window will
                // be assigned a value by the `run' method.
                //
                SpiceWindow         confin = new SpiceWindow();
                SpiceWindow         result = null;
    
                AberrationCorrection
                                  abcorr = new AberrationCorrection( "NONE" );
                Body              target = new Body ( "MOON" );
                Body              obsrvr = new Body ( "SUN" );
    
                //
                // Load kernels.
                //
                KernelDatabase.load ( "/kernels/standard.tm" );
    
                //
                // Store the time bounds of our search interval in
                // the confinement window.
                //
                double begtim = ( new TDBTime ( "2007 JAN 01" ) ).getTDBSeconds();
                double endtim = ( new TDBTime ( "2007 APR 01" ) ).getTDBSeconds();
    
                confin.insert( begtim, endtim );
    
                GFRangeRateSearch search = 
                                  new GFRangeRateSearch( target, abcorr, obsrvr );
    
                //
                // Search using a step size of 1 day (in units of seconds).
                //
                double step = SPD;
    
                for ( int k = 0;  k &lt relation.length;  k++ )
                   {
                   GFConstraint relate =
                   GFConstraint.createExtremumConstraint( relation[k] );
    
                   //
                   // Run the search over the confinement window,
                   // using the selected constraint and step size.
                   // Indicate the maximum number of workspace
                   // intervals to use.
                   //
                   result = search.run( confin, relate, step, MAXWIN );
    
                   //
                   // Display the results.
                   //
                   int count = result.card();
    
                   if ( count == 0 )
                      {
                      System.out.format ( "Result window is empty.%n%n" );
                      }
                   else
                      {
                      double[]       interval = new double[2];
                      TDBTime        start;
                      TDBTime        stop;
    
                      System.out.format ( "Relation = %s%n", relation[k] );
    
                      for ( int i = 0;  i &lt count;  i++ )
                         {
    
                         //
                         // Fetch the endpoints of the Ith interval of the result
                         // window.
                         //
                         interval = result.getInterval( i );
    
                         //
                         // Check the distance at the interval's
                         // start and stop times.
                         //
                         start = new TDBTime( interval[0] );
                         stop  = new TDBTime( interval[1] );
    
                         System.out.format ( "Start time = %s %n",
                                             start.toString(TIMFMT) );
                         System.out.format ( "Stop time  = %s %n",
                                             stop.toString(TIMFMT) );
                         }
    
                      System.out.format ( "%n" );
    
                      }
    
                   }
    
                }
             catch ( SpiceException exc )
                {
                exc.printStackTrace();
                }
    
             }
    
          }
       
    The program outputs:
          Relation = LOCMIN
          Start time = 2007-JAN-11 07:03:58.991
          Stop time  = 2007-JAN-11 07:03:58.991
          Start time = 2007-FEB-10 06:26:15.441
          Stop time  = 2007-FEB-10 06:26:15.441
          Start time = 2007-MAR-12 03:28:36.404
          Stop time  = 2007-MAR-12 03:28:36.404
    
          Relation = ABSMIN
          Start time = 2007-JAN-11 07:03:58.991
          Stop time  = 2007-JAN-11 07:03:58.991
    
          Relation = LOCMAX
          Start time = 2007-JAN-26 02:27:33.762
          Stop time  = 2007-JAN-26 02:27:33.762
          Start time = 2007-FEB-24 09:35:07.812
          Stop time  = 2007-FEB-24 09:35:07.812
          Start time = 2007-MAR-25 17:26:56.148
          Stop time  = 2007-MAR-25 17:26:56.148
    
          Relation = ABSMAX
          Start time = 2007-MAR-25 17:26:56.148
          Stop time  = 2007-MAR-25 17:26:56.148
       

    Version

       Version 1.0.0 08-MAR-2014 (NJB)(EDW)
       
    • Constructor Detail

      • GFRangeRateSearch

        public GFRangeRateSearch​(Body target,
                                 AberrationCorrection abcorr,
                                 Body observer)

        Constructor description.

        I/O

        Particulars

        Exceptions

        Examples

        Parameters:
        target - Body
        observer - Body
        abcorr - AberrationCorrection
        See Also:
        GFRangeRateSearch Example
    • Method Detail

      • run

        public SpiceWindow run​(SpiceWindow confinementWindow,
                               GFConstraint constraint,
                               double step,
                               int maxWorkspaceIntervals)
                        throws SpiceException

        Run a range rate search over a specified confinement window, using a specified constraint and step size (units are TDB seconds).

        For important details concerning this module's function, please refer to the CSPICE routine gfrr_c.

        I/O

        Particulars

           None.
           

        Exceptions

        Examples

        Specified by:
        run in class GFNumericSearch
        Parameters:
        confinementWindow - SpiceWindow
        maxWorkspaceIntervals - int
        constraint - GFConstraint
        step - double
        Returns:
        SpiceWindow
        Throws:
        SpiceException - exception
        See Also:
        GFRangeRateSearch Example
      • run

        public SpiceWindow run​(SpiceWindow confinementWindow,
                               GFConstraint constraint,
                               double step,
                               int maxWorkspaceIntervals,
                               double tol)
                        throws SpiceException

        Run a range rate search over a specified confinement window, using a specified constraint, step size, and convergence tolerance.

        For important details concerning this module's function, please refer to the CSPICE routine gfrr_c and gfstol_c.

        I/O

        Particulars

           None.
           

        Exceptions

        Examples

        Parameters:
        confinementWindow - SpiceWindow
        tol - double
        constraint - GFConstraint
        maxWorkspaceIntervals - int
        step - double
        Returns:
        SpiceWindow
        Throws:
        SpiceException - exception
        See Also:
        GFRangeRateSearch Example