philsupertramp/game-math
Loading...
Searching...
No Matches
Public Attributes | List of all members
ODEOption Struct Reference

#include <ode.h>

Public Attributes

double h = 0
 step width of t More...
 
double TOL = 1e-7
 tolerance for the algorithm to determine convergence More...
 
int maxIter = 50
 max iterations for integrated newton steps More...
 
ODEJac Jac = nullptr
 jacobian matrix of given function More...
 

Detailed Description

Option struct for ODE solvers

Examples
numerics/ode/TestExplicitEuler.cpp, numerics/ode/TestODEBDF2.cpp, and numerics/ode/TestODETrapez.cpp.

Member Data Documentation

◆ h

double ODEOption::h = 0

step width of t

◆ Jac

ODEJac ODEOption::Jac = nullptr

jacobian matrix of given function

◆ maxIter

int ODEOption::maxIter = 50

max iterations for integrated newton steps

◆ TOL

double ODEOption::TOL = 1e-7

tolerance for the algorithm to determine convergence


The documentation for this struct was generated from the following file: