BidomainProblem< DIM > Class Template Reference

#include <BidomainProblem.hpp>

Inheritance diagram for BidomainProblem< DIM >:

Inheritance graph
[legend]
Collaboration diagram for BidomainProblem< DIM >:

Collaboration graph
[legend]

List of all members.

Public Member Functions

 BidomainProblem (AbstractCardiacCellFactory< DIM > *pCellFactory, bool hasBath=false)
void SetFixedExtracellularPotentialNodes (std::vector< unsigned > nodes)
void SetNodeForAverageOfPhiZeroed (unsigned node)
BidomainPde< DIM > * GetBidomainPde ()
void WriteInfo (double time)
virtual void DefineWriterColumns ()
virtual void WriteOneStep (double time, Vec voltageVec)
void PreSolveChecks ()
void SetElectrodes (Electrodes< DIM > &rElectrodes)
void OnEndOfTimestep (double time)

Protected Member Functions

Vec CreateInitialCondition ()
void AnalyseMeshForBath ()
virtual AbstractCardiacPde< DIM > * CreateCardiacPde ()
virtual
AbstractDynamicAssemblerMixin
< DIM, DIM, 2 > * 
CreateAssembler ()

Protected Attributes

BidomainPde< DIM > * mpBidomainPde
std::vector< unsigned > mFixedExtracellularPotentialNodes
unsigned mExtracelluarColumnId
unsigned mRowForAverageOfPhiZeroed
bool mHasBath
Electrodes< DIM > * mpElectrodes
BidomainDg0Assembler< DIM, DIM > * mpAssembler

Friends

class TestBidomainWithBathAssembler


Detailed Description

template<unsigned DIM>
class BidomainProblem< DIM >

Class which specifies and solves a bidomain problem.

The solution vector is of the form: (V_1, phi_1, V_2, phi_2, ......, V_N, phi_N), where V_j is the voltage at node j and phi_j is the extracellular potential at node j.

Definition at line 53 of file BidomainProblem.hpp.


Constructor & Destructor Documentation

template<unsigned DIM>
BidomainProblem< DIM >::BidomainProblem ( AbstractCardiacCellFactory< DIM > *  pCellFactory,
bool  hasBath = false 
) [inline]

Constructor

Parameters:
pCellFactory User defined cell factory which shows how the pde should create cells.
hasBath Whether the simulation has a bath (if this is true, all elements with attribute = 1 will be set to be bath elements (the rest should have attribute = 0)).

Definition at line 177 of file BidomainProblem.cpp.

References BidomainProblem< DIM >::mFixedExtracellularPotentialNodes.


Member Function Documentation

template<unsigned DIM>
Vec BidomainProblem< DIM >::CreateInitialCondition (  )  [inline, protected, virtual]

template<unsigned DIM>
void BidomainProblem< DIM >::AnalyseMeshForBath (  )  [inline, protected]

template<unsigned DIM>
AbstractCardiacPde< DIM > * BidomainProblem< DIM >::CreateCardiacPde (  )  [inline, protected, virtual]

template<unsigned DIM>
AbstractDynamicAssemblerMixin< DIM, DIM, 2 > * BidomainProblem< DIM >::CreateAssembler (  )  [inline, protected, virtual]

template<unsigned DIM>
void BidomainProblem< DIM >::SetFixedExtracellularPotentialNodes ( std::vector< unsigned >  nodes  )  [inline]

Set the nodes at which phi_e (the extracellular potential) is fixed to zero. This does not necessarily have to be called. If it is not, phi_e is only defined up to a constant.

Parameters:
nodes the nodes to be fixed.
Note:
currently, the value of phi_e at the fixed nodes cannot be set to be anything other than zero.

Definition at line 189 of file BidomainProblem.cpp.

References BidomainProblem< DIM >::mFixedExtracellularPotentialNodes.

template<unsigned DIM>
void BidomainProblem< DIM >::SetNodeForAverageOfPhiZeroed ( unsigned  node  )  [inline]

Set which row of the linear system should be used to enforce the condition that the average of phi_e is zero. If not called, this condition will not be used.

Parameters:
node the mesh node index giving the row at which to impose the constraint

Definition at line 201 of file BidomainProblem.cpp.

References BidomainProblem< DIM >::mRowForAverageOfPhiZeroed.

template<unsigned DIM>
BidomainPde< DIM > * BidomainProblem< DIM >::GetBidomainPde (  )  [inline]

Get the pde. Can only be called after Initialise()

Definition at line 207 of file BidomainProblem.cpp.

References BidomainProblem< DIM >::mpBidomainPde.

template<unsigned DIM>
void BidomainProblem< DIM >::WriteInfo ( double  time  )  [inline, virtual]

template<unsigned DIM>
void BidomainProblem< DIM >::DefineWriterColumns (  )  [inline, virtual]

template<unsigned DIM>
void BidomainProblem< DIM >::WriteOneStep ( double  time,
Vec  voltageVec 
) [inline, virtual]

Write one timestep of output data to the primary results file. Adds the extracellular potential to the results.

Parameters:
time the current time
voltageVec the solution vector to write

Reimplemented from AbstractCardiacProblem< DIM, DIM, 2 >.

Definition at line 262 of file BidomainProblem.cpp.

References BidomainProblem< DIM >::mExtracelluarColumnId, AbstractCardiacProblem< DIM, DIM, 2 >::mpWriter, AbstractCardiacProblem< DIM, DIM, 2 >::mVoltageColumnId, Hdf5DataWriter::PutStripedVector(), and Hdf5DataWriter::PutUnlimitedVariable().

template<unsigned DIM>
void BidomainProblem< DIM >::PreSolveChecks (  )  [inline, virtual]

template<unsigned DIM>
void BidomainProblem< DIM >::SetElectrodes ( Electrodes< DIM > &  rElectrodes  )  [inline]

Set an electrode object (which provides boundary conditions). Only valid if there is a bath.

Parameters:
rElectrodes 

Definition at line 289 of file BidomainProblem.cpp.

References BidomainProblem< DIM >::mHasBath, BidomainProblem< DIM >::mpElectrodes, and AbstractCardiacProblem< DIM, DIM, 2 >::SetBoundaryConditionsContainer().

template<unsigned DIM>
void BidomainProblem< DIM >::OnEndOfTimestep ( double  time  )  [inline, virtual]


Member Data Documentation

template<unsigned DIM>
BidomainPde<DIM>* BidomainProblem< DIM >::mpBidomainPde [protected]

template<unsigned DIM>
std::vector<unsigned> BidomainProblem< DIM >::mFixedExtracellularPotentialNodes [protected]

template<unsigned DIM>
unsigned BidomainProblem< DIM >::mExtracelluarColumnId [protected]

Used by the writer

Definition at line 65 of file BidomainProblem.hpp.

Referenced by BidomainProblem< DIM >::DefineWriterColumns(), and BidomainProblem< DIM >::WriteOneStep().

template<unsigned DIM>
unsigned BidomainProblem< DIM >::mRowForAverageOfPhiZeroed [protected]

Another method of resolving the singularity in the bidomain equations. Specifies a row of the matrix at which to impose an extra condition.

Definition at line 70 of file BidomainProblem.hpp.

Referenced by BidomainProblem< DIM >::CreateAssembler(), BidomainProblem< DIM >::PreSolveChecks(), and BidomainProblem< DIM >::SetNodeForAverageOfPhiZeroed().

template<unsigned DIM>
bool BidomainProblem< DIM >::mHasBath [protected]

template<unsigned DIM>
Electrodes<DIM>* BidomainProblem< DIM >::mpElectrodes [protected]

Electrodes used to provide a shock

Definition at line 76 of file BidomainProblem.hpp.

Referenced by BidomainProblem< DIM >::OnEndOfTimestep(), and BidomainProblem< DIM >::SetElectrodes().

template<unsigned DIM>
BidomainDg0Assembler<DIM,DIM>* BidomainProblem< DIM >::mpAssembler [protected]

We need to save the assembler that is being used to switch off the electrodes (by adding default boundary conditions to the assembler)

Reimplemented from AbstractCardiacProblem< DIM, DIM, 2 >.

Definition at line 94 of file BidomainProblem.hpp.

Referenced by BidomainProblem< DIM >::CreateAssembler(), and BidomainProblem< DIM >::OnEndOfTimestep().


The documentation for this class was generated from the following files:

Generated on Tue Aug 4 16:10:56 2009 for Chaste by  doxygen 1.5.5