CopolarD.java

/*
 * Licensed to the Hipparchus project under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The Hipparchus project 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
 *
 *      https://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.hipparchus.special.elliptic.jacobi;

/** Copolar trio with pole at point d in Glaisher’s Notation.
 * <p>
 * This is a container for the three subsidiary Jacobi elliptic functions
 * {@code nd(u|m)}, {@code sd(u|m)}, and {@code cd(u|m)}.
 * </p>
 * @since 2.0
 */
public class CopolarD {

    /** Value of the nd function. */
    private final double nd;

    /** Value of the sd function. */
    private final double sd;

    /** Value of the cd function. */
    private final double cd;

    /** Simple constructor.
     * @param trioN copolar trio with pole at point n in Glaisher’s Notation
     */
    CopolarD(final CopolarN trioN) {
        this.nd = 1.0 / trioN.dn();
        this.sd = nd  * trioN.sn();
        this.cd = nd  * trioN.cn();
    }

    /** Get the value of the nd function.
     * @return nd(u|m)
     */
    public double nd() {
        return nd;
    }

    /** Get the value of the sd function.
     * @return sd(u|m)
     */
    public double sd() {
        return sd;
    }

    /** Get the value of the cd function.
     * @return cd(u|m)
     */
    public double cd() {
        return cd;
    }

}