H2 Combustion
|
This is the base class for intergrators that the program can use to intergrate a physical system. More...
Public Member Functions | |
Integrator (Integrable *s) | |
virtual void | integrate (double T, double deltaT)=0 |
void | setSystem (Integrable *s) |
Protected Member Functions | |
Integrable * | system () |
It uses the interface Integrable to communicate with the system. The system is set in the costructor, but also can be set later using setSystem. Because integrate is not implemented (pure virtual), this is an abstract class.