Example usage for org.apache.commons.math3.ode FirstOrderDifferentialEquations interface-usage

List of usage examples for org.apache.commons.math3.ode FirstOrderDifferentialEquations interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.math3.ode FirstOrderDifferentialEquations interface-usage.

Usage

From source file edu.gcsc.vrl.commons.math.ode.XSquareODE.java

/**
 *
 * @author Michael Hoffer <info@michaelhoffer.de>
 */
public class XSquareODE implements FirstOrderDifferentialEquations {

From source file edu.gcsc.vrl.commons.math.ode.GroovyFunctionODE.java

/**
 *
 * @author Michael Hoffer <info@michaelhoffer.de>
 */
public class GroovyFunctionODE implements FirstOrderDifferentialEquations {

From source file pl.umk.lgorski.Equation.java

/**
 *
 * @author ?ukasz Grski <lgorski@mat.umk.pl>
 */
public class Equation implements FirstOrderDifferentialEquations {

From source file reactor.semibatchreactor.SemiBatchReactor.java

/**
 *
 * @author Michael C. 30/07/2014
 */
public class SemiBatchReactor implements FirstOrderDifferentialEquations {
    public static final double WATER_CONCENTRATION = 55;

From source file travelTimesBack.PbackODE.java

/**
 * The Class PbackODE implements the first order differential equation 
 * for the computation of the residence time pdf, given the water storage,
 * the discharge and AET. Omega_Q and omega_ET are the values of the 
 * storage selection functions. The output is p_back(t-ti|ti). 
 */

From source file jat.core.cm.CRTBP.java

/**
 * @author Tobias Berthold
 * 
 *         Central Restricted Three Body Problem
 */
public class CRTBP implements FirstOrderDifferentialEquations {

From source file jat.core.cm.TwoBodyAPL.java

public class TwoBodyAPL extends TwoBody implements FirstOrderDifferentialEquations {
    double initial_ta;
    public ArrayList<Double> time = new ArrayList<Double>();
    public ArrayList<Double> xsol = new ArrayList<Double>();
    public ArrayList<Double> ysol = new ArrayList<Double>();
    public ArrayList<Double> zsol = new ArrayList<Double>();

From source file de.uni_erlangen.lstm.models.adm1.DAEModel.java

/**
 * Modified from the BSM2 adjusted model for IAWQ AD Model No 1.
 * adm1_ODE.c, adm1_DAE1.c, adm1_DAE2.c, pHsolv.c, Sh2solv.c
 * 
 * Special thanks to  Ulf Jeppsson, Christian Rosen and Darko Vrecko
 * for use of their Matlab code of the ADM1, 

From source file org.fhcrc.honeycomb.metapop.ode.ConsumptionODE.java

/** 
 * Uses ODEs to accurately calculate growth rates.
 *
 * Created on 2 Aug, 2013
 * @author Adam Waite
 * @version $Rev: 2393 $, $Date: 2014-05-24 19:17:59 -0400 (Sat, 24 May 2014) $, $Author: ajwaite $

From source file jat.core.ephemeris.DE405Plus.java

/**
 * The DE405 Ephemeris data files from JPL are given in the ICRF frame. This
 * class allows to choose the frame for which position and velocity are
 * calculated (See DE405Frame.java)
 * 
 */