/* 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.propagation.events; import org.hipparchus.exception.MathRuntimeException; import org.hipparchus.geometry.euclidean.threed.Vector3D; import org.hipparchus.ode.nonstiff.AdaptiveStepsizeIntegrator; import org.hipparchus.ode.nonstiff.DormandPrince853Integrator; import org.hipparchus.util.FastMath; import org.junit.After; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.orekit.Utils; import org.orekit.bodies.CelestialBody; import org.orekit.bodies.CelestialBodyFactory; import org.orekit.errors.OrekitException; import org.orekit.frames.FramesFactory; import org.orekit.orbits.CartesianOrbit; import org.orekit.orbits.EquinoctialOrbit; import org.orekit.orbits.Orbit; import org.orekit.propagation.SpacecraftState; import org.orekit.propagation.events.handlers.StopOnDecreasing; import org.orekit.propagation.numerical.NumericalPropagator; import org.orekit.time.AbsoluteDate; import org.orekit.time.TimeScalesFactory; import org.orekit.utils.PVCoordinates; import org.orekit.utils.TimeStampedPVCoordinates; public class EclipseDetectorTest { private double mu; private AbsoluteDate iniDate; private SpacecraftState initialState; private NumericalPropagator propagator; private CelestialBody sun; private CelestialBody earth; private double sunRadius; private double earthRadius; @Test public void testEclipse() throws OrekitException { EclipseDetector e = new EclipseDetector(60., 1.e-3, sun, sunRadius, earth, earthRadius). withHandler(new StopOnDecreasing<EclipseDetector>()). withUmbra(); Assert.assertEquals(60.0, e.getMaxCheckInterval(), 1.0e-15); Assert.assertEquals(1.0e-3, e.getThreshold(), 1.0e-15); Assert.assertEquals(AbstractDetector.DEFAULT_MAX_ITER, e.getMaxIterationCount()); Assert.assertSame(sun, e.getOcculted()); Assert.assertEquals(sunRadius, e.getOccultedRadius(), 1.0); Assert.assertSame(earth, e.getOcculting()); Assert.assertEquals(earthRadius, e.getOccultingRadius(), 1.0); Assert.assertTrue(e.getTotalEclipse()); propagator.addEventDetector(e); final SpacecraftState finalState = propagator.propagate(iniDate.shiftedBy(6000)); Assert.assertEquals(2303.1835, finalState.getDate().durationFrom(iniDate), 1.0e-3); } @Test public void testPenumbra() throws OrekitException { EclipseDetector e = new EclipseDetector(sun, sunRadius, earth, earthRadius). withPenumbra(); Assert.assertFalse(e.getTotalEclipse()); propagator.addEventDetector(e); final SpacecraftState finalState = propagator.propagate(iniDate.shiftedBy(6000)); Assert.assertEquals(4388.155852, finalState.getDate().durationFrom(iniDate), 2.0e-6); } @Test public void testWithMethods() throws OrekitException { EclipseDetector e = new EclipseDetector(60., sun, sunRadius, earth, earthRadius). withHandler(new StopOnDecreasing<EclipseDetector>()). withMaxCheck(120.0). withThreshold(1.0e-4). withMaxIter(12); Assert.assertEquals(120.0, e.getMaxCheckInterval(), 1.0e-15); Assert.assertEquals(1.0e-4, e.getThreshold(), 1.0e-15); Assert.assertEquals(12, e.getMaxIterationCount()); propagator.addEventDetector(e); final SpacecraftState finalState = propagator.propagate(iniDate.shiftedBy(6000)); Assert.assertEquals(2303.1835, finalState.getDate().durationFrom(iniDate), 1.0e-3); } @Test public void testInsideOcculting() throws OrekitException { EclipseDetector e = new EclipseDetector(sun, sunRadius, earth, earthRadius); SpacecraftState s = new SpacecraftState(new CartesianOrbit(new TimeStampedPVCoordinates(AbsoluteDate.J2000_EPOCH, new Vector3D(1e6, 2e6, 3e6), new Vector3D(1000, 0, 0)), FramesFactory.getGCRF(), mu)); Assert.assertEquals(-FastMath.PI, e.g(s), 1.0e-15); } @Test public void testInsideOcculted() throws OrekitException { EclipseDetector e = new EclipseDetector(sun, sunRadius, earth, earthRadius); Vector3D p = sun.getPVCoordinates(AbsoluteDate.J2000_EPOCH, FramesFactory.getGCRF()).getPosition(); SpacecraftState s = new SpacecraftState(new CartesianOrbit(new TimeStampedPVCoordinates(AbsoluteDate.J2000_EPOCH, p.add(Vector3D.PLUS_I), Vector3D.PLUS_K), FramesFactory.getGCRF(), mu)); Assert.assertEquals(FastMath.PI, e.g(s), 1.0e-15); } @Test public void testTooSmallMaxIterationCount() throws OrekitException { int n = 5; EclipseDetector e = new EclipseDetector(60., 1.e-3, sun, sunRadius, earth, earthRadius). withHandler(new StopOnDecreasing<EclipseDetector>()). withMaxCheck(120.0). withThreshold(1.0e-4). withMaxIter(n); propagator.addEventDetector(e); try { propagator.propagate(iniDate.shiftedBy(6000)); Assert.fail("an exception should have been thrown"); } catch (OrekitException oe) { Assert.assertEquals(n, ((Integer) ((MathRuntimeException) oe.getCause()).getParts()[0]).intValue()); } } @Before public void setUp() { try { Utils.setDataRoot("regular-data"); mu = 3.9860047e14; final Vector3D position = new Vector3D(-6142438.668, 3492467.560, -25767.25680); final Vector3D velocity = new Vector3D(505.8479685, 942.7809215, 7435.922231); iniDate = new AbsoluteDate(1969, 7, 28, 4, 0, 0.0, TimeScalesFactory.getTT()); final Orbit orbit = new EquinoctialOrbit(new PVCoordinates(position, velocity), FramesFactory.getGCRF(), iniDate, mu); initialState = new SpacecraftState(orbit); double[] absTolerance = { 0.001, 1.0e-9, 1.0e-9, 1.0e-6, 1.0e-6, 1.0e-6, 0.001 }; double[] relTolerance = { 1.0e-7, 1.0e-4, 1.0e-4, 1.0e-7, 1.0e-7, 1.0e-7, 1.0e-7 }; AdaptiveStepsizeIntegrator integrator = new DormandPrince853Integrator(0.001, 1000, absTolerance, relTolerance); integrator.setInitialStepSize(60); propagator = new NumericalPropagator(integrator); propagator.setInitialState(initialState); sun = CelestialBodyFactory.getSun(); earth = CelestialBodyFactory.getEarth(); sunRadius = 696000000.; earthRadius = 6400000.; } catch (OrekitException oe) { Assert.fail(oe.getLocalizedMessage()); } } @After public void tearDown() { iniDate = null; initialState = null; propagator = null; } }