org.orekit.rugged.los.FixedRotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rugged Show documentation
Show all versions of rugged Show documentation
Rugged is an Orekit add-on handling Digital Elevation Models
contribution to line of sight computation
/* Copyright 2013-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.rugged.los;
import java.util.stream.Stream;
import org.hipparchus.analysis.differentiation.DerivativeStructure;
import org.hipparchus.geometry.euclidean.threed.FieldRotation;
import org.hipparchus.geometry.euclidean.threed.FieldVector3D;
import org.hipparchus.geometry.euclidean.threed.Rotation;
import org.hipparchus.geometry.euclidean.threed.RotationConvention;
import org.hipparchus.geometry.euclidean.threed.Vector3D;
import org.hipparchus.util.FastMath;
import org.orekit.errors.OrekitException;
import org.orekit.rugged.errors.RuggedException;
import org.orekit.rugged.utils.DSGenerator;
import org.orekit.utils.ParameterDriver;
import org.orekit.utils.ParameterObserver;
/** {@link TimeIndependentLOSTransform LOS transform} based on a fixed rotation.
* @author Luc Maisonobe
* @see LOSBuilder
*/
public class FixedRotation implements TimeIndependentLOSTransform {
/** Parameters scaling factor.
*
* We use a power of 2 to avoid numeric noise introduction
* in the multiplications/divisions sequences.
*
*/
private final double SCALE = FastMath.scalb(1.0, -20);
/** Rotation axis. */
private final Vector3D axis;
/** Underlying rotation. */
private Rotation rotation;
/** Underlying rotation with derivatives. */
private FieldRotation rDS;
/** Driver for rotation angle. */
private final ParameterDriver angleDriver;
/** Simple constructor.
*
* The single parameter is the rotation angle.
*
* @param name name of the rotation (used for estimated parameters identification)
* @param axis rotation axis
* @param angle rotation angle
*/
public FixedRotation(final String name, final Vector3D axis, final double angle) {
this.axis = axis;
this.rotation = null;
this.rDS = null;
try {
this.angleDriver = new ParameterDriver(name, angle, SCALE, -2 * FastMath.PI, 2 * FastMath.PI);
angleDriver.addObserver(new ParameterObserver() {
@Override
public void valueChanged(final double previousValue, final ParameterDriver driver) {
// reset rotations to null, they will be evaluated lazily if needed
rotation = null;
rDS = null;
}
});
} catch (OrekitException oe) {
// this should never happen
throw RuggedException.createInternalError(oe);
}
}
/** {@inheritDoc} */
@Override
public Stream getParametersDrivers() {
return Stream.of(angleDriver);
}
/** {@inheritDoc} */
@Override
public Vector3D transformLOS(final int i, final Vector3D los) {
if (rotation == null) {
// lazy evaluation of the rotation
rotation = new Rotation(axis, angleDriver.getValue(), RotationConvention.VECTOR_OPERATOR);
}
return rotation.applyTo(los);
}
/** {@inheritDoc} */
@Override
public FieldVector3D transformLOS(final int i, final FieldVector3D los,
final DSGenerator generator) {
if (rDS == null) {
// lazy evaluation of the rotation
final FieldVector3D axisDS =
new FieldVector3D(generator.constant(axis.getX()),
generator.constant(axis.getY()),
generator.constant(axis.getZ()));
final DerivativeStructure angleDS = generator.variable(angleDriver);
rDS = new FieldRotation(axisDS, angleDS, RotationConvention.VECTOR_OPERATOR);
}
return rDS.applyTo(los);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy