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 #include "BidomainMassMatrixAssembler.hpp"
00032 #include "HeartRegionCodes.hpp"
00033
00034 template<unsigned DIM>
00035 c_matrix<double,2*(DIM+1),2*(DIM+1)> BidomainMassMatrixAssembler<DIM>::ComputeMatrixTerm(
00036 c_vector<double, DIM+1> &rPhi,
00037 c_matrix<double, DIM, DIM+1> &rGradPhi,
00038 ChastePoint<DIM> &rX,
00039 c_vector<double,2> &rU,
00040 c_matrix<double,2,DIM> &rGradU ,
00041 Element<DIM,DIM>* pElement)
00042 {
00043 c_matrix<double,2*(DIM+1),2*(DIM+1)> ret = zero_matrix<double>(2*(DIM+1), 2*(DIM+1));
00044
00045 if (!HeartRegionCode::IsRegionBath( pElement->GetRegion() ))
00046 {
00047 c_matrix<double, DIM+1, DIM+1> basis_outer_prod = outer_prod(rPhi, rPhi);
00048
00049
00050 matrix_slice<c_matrix<double, 2*DIM+2, 2*DIM+2> >
00051 slice00(ret, slice (0, 2, DIM+1), slice (0, 2, DIM+1));
00052 slice00 = basis_outer_prod;
00053
00054
00055
00056
00057 }
00058
00059 return ret;
00060 }
00061
00062
00063
00065
00067
00068 template class BidomainMassMatrixAssembler<1>;
00069 template class BidomainMassMatrixAssembler<2>;
00070 template class BidomainMassMatrixAssembler<3>;