ExtendedBidomainMassMatrixAssembler.hpp
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifndef EXTENDEDBIDOMAINMASSMATRIXASSEMBLER_HPP_
00033 #define EXTENDEDBIDOMAINMASSMATRIXASSEMBLER_HPP_
00034
00035
00036
00037 #include "AbstractCardiacFeVolumeIntegralAssembler.hpp"
00038
00056 template<unsigned DIM>
00057 class ExtendedBidomainMassMatrixAssembler : public AbstractFeVolumeIntegralAssembler<DIM,DIM,3,false,true,NORMAL>
00058 {
00059 protected:
00074 virtual c_matrix<double,3*(DIM+1),3*(DIM+1)> ComputeMatrixTerm(
00075 c_vector<double, DIM+1> &rPhi,
00076 c_matrix<double, DIM, DIM+1> &rGradPhi,
00077 ChastePoint<DIM> &rX,
00078 c_vector<double,3> &rU,
00079 c_matrix<double,3,DIM> &rGradU ,
00080 Element<DIM,DIM>* pElement);
00081
00082 public:
00083
00089 ExtendedBidomainMassMatrixAssembler(AbstractTetrahedralMesh<DIM,DIM>* pMesh)
00090 : AbstractFeVolumeIntegralAssembler<DIM,DIM,3,false,true,NORMAL>(pMesh)
00091 {
00092 }
00093
00097 ~ExtendedBidomainMassMatrixAssembler()
00098 {
00099 }
00100 };
00101
00102
00103 #endif