Chaste Release::3.1
|
#include <AbstractModifier.hpp>
Public Member Functions | |
AbstractModifier (void) | |
virtual | ~AbstractModifier () |
virtual double | Calc (double param, double time)=0 |
This family of classes are used to add simple functions into cell models to modify particular quantities on the fly. Rather than the model using the quantity directly in computing its right-hand side, it calls calc() with the current value and uses the result of that instead.
Clearly for this to work the cell model must be modified to include calls to instances of these classes. PyCml has some experimental support for this, generating subclasses of AbstractCardiacCellWithModifiers.
Definition at line 49 of file AbstractModifier.hpp.
AbstractModifier::AbstractModifier | ( | void | ) | [inline] |
Default constructor.
Definition at line 55 of file AbstractModifier.hpp.
virtual AbstractModifier::~AbstractModifier | ( | ) | [inline, virtual] |
Default destructor.
Definition at line 62 of file AbstractModifier.hpp.
Pure virtual function which must be overriden in subclasses to actually perform the modification.
param | the current value of the quantity which is being modified |
time | the current simulation time |
Implemented in FactorModifier, TimeModifier, FixedModifier, and DummyModifier.