⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 highamhall54stepinterpolator.java

📁 Apache的common math数学软件包
💻 JAVA
字号:
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements.  See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF 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.apache.commons.math.ode;/** * This class represents an interpolator over the last step during an * ODE integration for the 5(4) Higham and Hall integrator. * * @see HighamHall54Integrator * * @version $Revision: 620312 $ $Date: 2008-02-10 12:28:59 -0700 (Sun, 10 Feb 2008) $ * @since 1.2 */class HighamHall54StepInterpolator  extends RungeKuttaStepInterpolator {  /** Simple constructor.   * This constructor builds an instance that is not usable yet, the   * {@link AbstractStepInterpolator#reinitialize} method should be called   * before using the instance in order to initialize the internal arrays. This   * constructor is used only in order to delay the initialization in   * some cases. The {@link EmbeddedRungeKuttaIntegrator} uses the   * prototyping design pattern to create the step interpolators by   * cloning an uninitialized model and latter initializing the copy.   */  public HighamHall54StepInterpolator() {    super();  }  /** Copy constructor.   * @param interpolator interpolator to copy from. The copy is a deep   * copy: its arrays are separated from the original arrays of the   * instance   */  public HighamHall54StepInterpolator(HighamHall54StepInterpolator interpolator) {    super(interpolator);  }  /** Really copy the finalized instance.   * @return a copy of the finalized instance   */  protected StepInterpolator doCopy() {    return new HighamHall54StepInterpolator(this);  }  /** Compute the state at the interpolated time.   * @param theta normalized interpolation abscissa within the step   * (theta is zero at the previous time step and one at the current time step)   * @param oneMinusThetaH time gap between the interpolated time and   * the current time   * @throws DerivativeException this exception is propagated to the caller if the   * underlying user function triggers one   */  protected void computeInterpolatedState(double theta,                                          double oneMinusThetaH)    throws DerivativeException {    double theta2 = theta * theta;    double b0 = h * (-1.0/12.0 + theta * (1.0 + theta * (-15.0/4.0 + theta * (16.0/3.0 + theta * -5.0/2.0))));    double b2 = h * (-27.0/32.0 + theta2 * (459.0/32.0 + theta * (-243.0/8.0 + theta * 135.0/8.0)));    double b3 = h * (4.0/3.0 + theta2 * (-22.0 + theta * (152.0/3.0  + theta * -30.0)));    double b4 = h * (-125.0/96.0 + theta2 * (375.0/32.0 + theta * (-625.0/24.0 + theta * 125.0/8.0)));    double b5 = h * (-5.0/48.0 + theta2 * (-5.0/16.0 + theta * 5.0/12.0));    for (int i = 0; i < interpolatedState.length; ++i) {      interpolatedState[i] = currentState[i] +                             b0 * yDotK[0][i] + b2 * yDotK[2][i] + b3 * yDotK[3][i] +                             b4 * yDotK[4][i] + b5 * yDotK[5][i];    }  }  /** Serializable version identifier */  private static final long serialVersionUID = -3583240427587318654L;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -