FieldTroposphericDelay.java
/* Copyright 2002-2024 Thales Alenia Space
* Licensed to CS GROUP (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.models.earth.troposphere;
import org.hipparchus.CalculusFieldElement;
/** Container for tropospheric delay.
* @param <T> type of the field elements
* @author Luc Maisonobe
* @since 12.1
*/
public class FieldTroposphericDelay<T extends CalculusFieldElement<T>> {
/** Hydrostatic zenith delay (m). */
private final T zh;
/** Wet zenith delay (m). */
private final T zw;
/** Hydrostatic slanted delay (m). */
private final T sh;
/** Wet slanted delay (m). */
private final T sw;
/** Simple constructor.
* @param zh hydrostatic zenith delay (m)
* @param zw wet zenith delay (m)
* @param sh hydrostatic slanted delay (m)
* @param sw wet slanted delay (m)
*/
public FieldTroposphericDelay(final T zh, final T zw, final T sh, final T sw) {
this.zh = zh;
this.zw = zw;
this.sh = sh;
this.sw = sw;
}
/** Get hydrostatic zenith delay (m).
* @return hydrostatic zenith delay (m)
*/
public T getZh() {
return zh;
}
/** Get wet zenith delay (m).
* @return wet zenith delay (m)
*/
public T getZw() {
return zw;
}
/** Get slanted delay (m).
* @return slanted delay (m)
*/
public T getSh() {
return sh;
}
/** Get wet slanted delay (m).
* @return wet slanted delay (m)
*/
public T getSw() {
return sw;
}
/** Get the total slanted delay (m).
* @return total slanted delay (m)
*/
public T getDelay() {
return sh.add(sw);
}
}