CardiacElectroMechanicsProblem< DIM > Class Template Reference

#include <CardiacElectroMechanicsProblem.hpp>

Inheritance diagram for CardiacElectroMechanicsProblem< DIM >:

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

Collaboration graph
[legend]

List of all members.

Public Member Functions

 CardiacElectroMechanicsProblem (TetrahedralMesh< DIM, DIM > *pElectricsMesh, QuadraticMesh< DIM > *pMechanicsMesh, std::vector< unsigned > fixedMechanicsNodes, AbstractCardiacCellFactory< DIM > *pCellFactory, double endTime, unsigned numElecTimeStepsPerMechTimestep, double nhsOdeTimeStep, std::string outputDirectory)
virtual ~CardiacElectroMechanicsProblem ()
void Initialise ()
void Solve ()
double Max (std::vector< double > &vec)
void SetNoElectricsOutput ()
void SetWatchedPosition (c_vector< double, DIM > watchedLocation)
std::vector< c_vector< double,
DIM > > & 
rGetDeformedPosition ()

Protected Member Functions

void DetermineWatchedNodes ()
void WriteWatchedLocationData (double time, Vec voltage)

Protected Attributes

MonodomainProblem< DIM > * mpMonodomainProblem
ImplicitCardiacMechanicsAssembler
< DIM > * 
mpCardiacMechAssembler
double mEndTime
double mElectricsTimeStep
double mMechanicsTimeStep
unsigned mNumElecTimestepsPerMechTimestep
double mNhsOdeTimeStep
TetrahedralMesh< DIM, DIM > * mpElectricsMesh
QuadraticMesh< DIM > * mpMechanicsMesh
std::vector< ElementAndWeights
< DIM > > 
mElementAndWeightsForQuadPoints
std::string mOutputDirectory
std::string mDeformationOutputDirectory
bool mWriteOutput
bool mNoElectricsOutput
bool mIsWatchedLocation
c_vector< double, DIM > mWatchedLocation
unsigned mWatchedElectricsNodeIndex
unsigned mWatchedMechanicsNodeIndex
out_stream mpWatchedLocationFile
std::vector< unsigned > mFixedNodes

Static Protected Attributes

static const int WRITE_EVERY_NTH_TIME = 1

Friends

class TestCardiacElectroMechanicsProblem


Detailed Description

template<unsigned DIM>
class CardiacElectroMechanicsProblem< DIM >

CardiacElectroMechanicsProblem

For solving full electro-mechanical problems.

Solves a monodomain problem (diffusion plus cell models) on a (fine) electrics mesh, and a mechanics problem (finite elasticity plus NHS cell models) on a coarse mesh. An implicit scheme (Jon Whiteley's algorithm) be be used.

For solving problems on regular grids use CardiacElectroMechProbRegularGeom

The implicit algorithm:

Store the position in the electrics mesh of each quad point in the mechanics mesh For every time: Solve the monodomain problem (ie integrate ODEs, solve PDE) Get intracellular [Ca] at each electrics node and interpolate on each mechanics quad point Set [Ca] on each NHS model (one for each point) Solve static finite elasticity problem implicity

Note: invC is not used in the monodomain equations (code added but commented out) we have shown that this does not affect the mechanics results (might affect the electrics).

Definition at line 99 of file CardiacElectroMechanicsProblem.hpp.


Constructor & Destructor Documentation

template<unsigned DIM>
CardiacElectroMechanicsProblem< DIM >::CardiacElectroMechanicsProblem ( TetrahedralMesh< DIM, DIM > *  pElectricsMesh,
QuadraticMesh< DIM > *  pMechanicsMesh,
std::vector< unsigned >  fixedMechanicsNodes,
AbstractCardiacCellFactory< DIM > *  pCellFactory,
double  endTime,
unsigned  numElecTimeStepsPerMechTimestep,
double  nhsOdeTimeStep,
std::string  outputDirectory = "" 
) [inline]

template<unsigned DIM>
CardiacElectroMechanicsProblem< DIM >::~CardiacElectroMechanicsProblem (  )  [inline, virtual]


Member Function Documentation

template<unsigned DIM>
void CardiacElectroMechanicsProblem< DIM >::DetermineWatchedNodes (  )  [inline, protected]

template<unsigned DIM>
void CardiacElectroMechanicsProblem< DIM >::WriteWatchedLocationData ( double  time,
Vec  voltage 
) [inline, protected]

template<unsigned DIM>
void CardiacElectroMechanicsProblem< DIM >::Initialise (  )  [inline]

template<unsigned DIM>
void CardiacElectroMechanicsProblem< DIM >::Solve (  )  [inline]

template<unsigned DIM>
void CardiacElectroMechanicsProblem< DIM >::SetNoElectricsOutput (  )  [inline]

Call to not write out voltages

Definition at line 543 of file CardiacElectroMechanicsProblem.cpp.

References CardiacElectroMechanicsProblem< DIM >::mNoElectricsOutput.

template<unsigned DIM>
void CardiacElectroMechanicsProblem< DIM >::SetWatchedPosition ( c_vector< double, DIM >  watchedLocation  )  [inline]

Set a location to be watched - for which lots of output is given. Should correspond to nodes in both meshes.

The watched file will have rows that look like: time x_pos y_pos [z_pos] voltage Ca_i_conc.

NOTE: for the Calcium - assumes LUO_RUDY IS USED

Definition at line 549 of file CardiacElectroMechanicsProblem.cpp.

References CardiacElectroMechanicsProblem< DIM >::mIsWatchedLocation, and CardiacElectroMechanicsProblem< DIM >::mWatchedLocation.

template<unsigned DIM>
std::vector< c_vector< double, DIM > > & CardiacElectroMechanicsProblem< DIM >::rGetDeformedPosition (  )  [inline]

Get the current deformed position of the nodes

Definition at line 556 of file CardiacElectroMechanicsProblem.cpp.

References CardiacElectroMechanicsProblem< DIM >::mpCardiacMechAssembler.


Member Data Documentation

template<unsigned DIM>
MonodomainProblem<DIM>* CardiacElectroMechanicsProblem< DIM >::mpMonodomainProblem [protected]

template<unsigned DIM>
double CardiacElectroMechanicsProblem< DIM >::mEndTime [protected]

template<unsigned DIM>
double CardiacElectroMechanicsProblem< DIM >::mElectricsTimeStep [protected]

template<unsigned DIM>
double CardiacElectroMechanicsProblem< DIM >::mMechanicsTimeStep [protected]

The mechanics timestep. Needs to be a multiple of the electrics timestep

Definition at line 115 of file CardiacElectroMechanicsProblem.hpp.

Referenced by CardiacElectroMechanicsProblem< DIM >::CardiacElectroMechanicsProblem(), and CardiacElectroMechanicsProblem< DIM >::Solve().

template<unsigned DIM>
unsigned CardiacElectroMechanicsProblem< DIM >::mNumElecTimestepsPerMechTimestep [protected]

The number of electrics timesteps per mechanics timestep

Definition at line 117 of file CardiacElectroMechanicsProblem.hpp.

Referenced by CardiacElectroMechanicsProblem< DIM >::CardiacElectroMechanicsProblem(), and CardiacElectroMechanicsProblem< DIM >::Solve().

template<unsigned DIM>
double CardiacElectroMechanicsProblem< DIM >::mNhsOdeTimeStep [protected]

Timestep to use when solving NHS models (for implicit version)

Definition at line 119 of file CardiacElectroMechanicsProblem.hpp.

Referenced by CardiacElectroMechanicsProblem< DIM >::CardiacElectroMechanicsProblem(), and CardiacElectroMechanicsProblem< DIM >::Solve().

template<unsigned DIM>
TetrahedralMesh<DIM,DIM>* CardiacElectroMechanicsProblem< DIM >::mpElectricsMesh [protected]

template<unsigned DIM>
QuadraticMesh<DIM>* CardiacElectroMechanicsProblem< DIM >::mpMechanicsMesh [protected]

template<unsigned DIM>
std::vector<ElementAndWeights<DIM> > CardiacElectroMechanicsProblem< DIM >::mElementAndWeightsForQuadPoints [protected]

The (electrics-mesh) element numbers saying which element each (mechanics-mesh) gauss point is in, and the weight of that gauss point for that particular element.

Definition at line 131 of file CardiacElectroMechanicsProblem.hpp.

Referenced by CardiacElectroMechanicsProblem< DIM >::Initialise(), and CardiacElectroMechanicsProblem< DIM >::Solve().

template<unsigned DIM>
std::string CardiacElectroMechanicsProblem< DIM >::mOutputDirectory [protected]

template<unsigned DIM>
std::string CardiacElectroMechanicsProblem< DIM >::mDeformationOutputDirectory [protected]

template<unsigned DIM>
bool CardiacElectroMechanicsProblem< DIM >::mWriteOutput [protected]

template<unsigned DIM>
bool CardiacElectroMechanicsProblem< DIM >::mNoElectricsOutput [protected]

template<unsigned DIM>
const int CardiacElectroMechanicsProblem< DIM >::WRITE_EVERY_NTH_TIME = 1 [static, protected]

when to write output

Definition at line 143 of file CardiacElectroMechanicsProblem.hpp.

Referenced by CardiacElectroMechanicsProblem< DIM >::Solve().

template<unsigned DIM>
bool CardiacElectroMechanicsProblem< DIM >::mIsWatchedLocation [protected]

template<unsigned DIM>
c_vector<double,DIM> CardiacElectroMechanicsProblem< DIM >::mWatchedLocation [protected]

template<unsigned DIM>
unsigned CardiacElectroMechanicsProblem< DIM >::mWatchedElectricsNodeIndex [protected]

template<unsigned DIM>
unsigned CardiacElectroMechanicsProblem< DIM >::mWatchedMechanicsNodeIndex [protected]

template<unsigned DIM>
out_stream CardiacElectroMechanicsProblem< DIM >::mpWatchedLocationFile [protected]

template<unsigned DIM>
std::vector<unsigned> CardiacElectroMechanicsProblem< DIM >::mFixedNodes [protected]


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

Generated on Wed Mar 18 12:52:24 2009 for Chaste by  doxygen 1.5.5