org.spaceroots.rkcheck
Class RungeKuttaMethod

java.lang.Object
  extended byorg.spaceroots.rkcheck.RungeKuttaMethod

public class RungeKuttaMethod
extends java.lang.Object

This class represents a Runge-Kutta method.

It is a simple placeholder for the various Butcher arrays, it does not provide any active methods.

Version:
$Id: RungeKuttaMethod.java,v 1.1 2004/05/23 13:32:01 luc Exp $
Author:
L. Maisonobe

Constructor Summary
RungeKuttaMethod()
          Simple constructor.
 
Method Summary
 QuadraticSurd[] getErrorWeights()
          Get the error weights table.
 QuadraticSurd[] getEstimationWeights()
          Get the estimation weights table.
 QuadraticSurd[][] getInternalWeights()
          Get the internal weights table.
 java.lang.String getName()
          Get the name of the method.
 QuadraticSurd[] getTimeSteps()
          Get the time steps table.
 void setErrorWeights(QuadraticSurd[] errorWeights)
          Set the error weights table.
 void setEstimationWeights(QuadraticSurd[] estimationWeights)
          Set the estimation weights table.
 void setInternalWeights(QuadraticSurd[][] internalWeights)
          Set the internal weights table.
 void setName(java.lang.String name)
          Set the name of the method.
 void setTimeSteps(QuadraticSurd[] timeSteps)
          Set the time steps table.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RungeKuttaMethod

public RungeKuttaMethod()
Simple constructor.

Build a non-initialized Runge-Kutta method

Method Detail

getName

public java.lang.String getName()
Get the name of the method.

Returns:
method name

setName

public void setName(java.lang.String name)
Set the name of the method.

Returns:
method name

getTimeSteps

public QuadraticSurd[] getTimeSteps()
Get the time steps table.

Returns:
time steps table

setTimeSteps

public void setTimeSteps(QuadraticSurd[] timeSteps)
Set the time steps table.

Parameters:
timeSteps - time steps table

getInternalWeights

public QuadraticSurd[][] getInternalWeights()
Get the internal weights table.

Returns:
internal weights table

setInternalWeights

public void setInternalWeights(QuadraticSurd[][] internalWeights)
Set the internal weights table.

Parameters:
internalWeights - internal weights table

getEstimationWeights

public QuadraticSurd[] getEstimationWeights()
Get the estimation weights table.

Returns:
estimation weights table

setEstimationWeights

public void setEstimationWeights(QuadraticSurd[] estimationWeights)
Set the estimation weights table.

Parameters:
estimationWeights - estimation weights table

getErrorWeights

public QuadraticSurd[] getErrorWeights()
Get the error weights table.

Returns:
error weights table

setErrorWeights

public void setErrorWeights(QuadraticSurd[] errorWeights)
Set the error weights table.

Parameters:
errorWeights - error weights table


Copyright © 2002-2004 Luc Maisonobe. All Rights Reserved.