All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class CH.epfl.lcvm.mccc.OneDDiscretization

java.lang.Object
   |
   +----CH.epfl.lcvm.mccc.OneDDiscretization

public abstract class OneDDiscretization
extends Object
implements Function
A general 1D discretization abstract base class.


Variable Index

 o func_
 o mesh_

Constructor Index

 o OneDDiscretization(ODEFunctionWithBC, OneDMesh)
A discretization creation function which takes a mesh and a function.

Method Index

 o call(Matrix)
Returns the value of the function at the specified point
 o getDomain()
Returns the dimension of the domain of the function
 o getRange()
Returns the dimension of the range of the function

Variables

 o func_
 protected ODEFunctionWithBC func_
 o mesh_
 protected OneDMesh mesh_

Constructors

 o OneDDiscretization
 public OneDDiscretization(ODEFunctionWithBC func,
                           OneDMesh mesh)
A discretization creation function which takes a mesh and a function. The assumes that the problem is of the form x' = func(x).

Parameters:
func - The function to discretize
mesh - The 1D mesh over which to discretize it

All Packages  Class Hierarchy  This Package  Previous  Next  Index