AveragedSourcePde.cpp

00001 /*
00002 
00003 Copyright (C) University of Oxford, 2005-2011
00004 
00005 University of Oxford means the Chancellor, Masters and Scholars of the
00006 University of Oxford, having an administrative office at Wellington
00007 Square, Oxford OX1 2JD, UK.
00008 
00009 This file is part of Chaste.
00010 
00011 Chaste is free software: you can redistribute it and/or modify it
00012 under the terms of the GNU Lesser General Public License as published
00013 by the Free Software Foundation, either version 2.1 of the License, or
00014 (at your option) any later version.
00015 
00016 Chaste is distributed in the hope that it will be useful, but WITHOUT
00017 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
00019 License for more details. The offer of Chaste under the terms of the
00020 License is subject to the License being interpreted in accordance with
00021 English Law and subject to any action against the University of Oxford
00022 being under the jurisdiction of the English Courts.
00023 
00024 You should have received a copy of the GNU Lesser General Public License
00025 along with Chaste. If not, see <http://www.gnu.org/licenses/>.
00026 
00027 */
00028 
00029 #include "AveragedSourcePde.hpp"
00030 #include "ApoptoticCellProperty.hpp"
00031 #include "PetscTools.hpp"
00032 
00033 template<unsigned DIM>
00034 AveragedSourcePde<DIM>::AveragedSourcePde(AbstractCellPopulation<DIM>& rCellPopulation, double coefficient)
00035     : mrCellPopulation(rCellPopulation),
00036       mCoefficient(coefficient)
00037 {
00038 }
00039 
00040 template<unsigned DIM>
00041 const AbstractCellPopulation<DIM>& AveragedSourcePde<DIM>::rGetCellPopulation() const
00042 {
00043     return mrCellPopulation;
00044 }
00045 
00046 template<unsigned DIM>
00047 double AveragedSourcePde<DIM>::GetCoefficient() const
00048 {
00049     return mCoefficient;
00050 }
00051 
00052 template<unsigned DIM>
00053 void AveragedSourcePde<DIM>::SetupSourceTerms(TetrahedralMesh<DIM,DIM>& rCoarseMesh, std::map< CellPtr, unsigned >* pCellPdeElementMap) // must be called before solve
00054 {
00055     // Allocate memory
00056     mCellDensityOnCoarseElements.resize(rCoarseMesh.GetNumElements());
00057     for (unsigned elem_index=0; elem_index<mCellDensityOnCoarseElements.size(); elem_index++)
00058     {
00059         mCellDensityOnCoarseElements[elem_index] = 0.0;
00060     }
00061 
00062     // Loop over cells, find which coarse element it is in, and add 1 to mSourceTermOnCoarseElements[elem_index]
00063     for (typename AbstractCellPopulation<DIM>::Iterator cell_iter = mrCellPopulation.Begin();
00064          cell_iter != mrCellPopulation.End();
00065          ++cell_iter)
00066     {
00067         unsigned elem_index = 0;
00068         const ChastePoint<DIM>& r_position_of_cell = mrCellPopulation.GetLocationOfCellCentre(*cell_iter);
00069 
00070         if (pCellPdeElementMap != NULL)
00071         {
00072             elem_index = (*pCellPdeElementMap)[*cell_iter];
00073         }
00074         else
00075         {
00076             elem_index = rCoarseMesh.GetContainingElementIndex(r_position_of_cell);
00077         }
00078 
00079         // Update element map if cell has moved
00080         bool cell_is_apoptotic = cell_iter->template HasCellProperty<ApoptoticCellProperty>();
00081 
00082         if (!cell_is_apoptotic)
00083         {
00084             mCellDensityOnCoarseElements[elem_index] += 1.0;
00085         }
00086     }
00087 
00088     // Then divide each entry of mSourceTermOnCoarseElements by the element's area
00089     c_matrix<double, DIM, DIM> jacobian;
00090     double det;
00091     for (unsigned elem_index=0; elem_index<mCellDensityOnCoarseElements.size(); elem_index++)
00092     {
00093         rCoarseMesh.GetElement(elem_index)->CalculateJacobian(jacobian, det);
00094         mCellDensityOnCoarseElements[elem_index] /= rCoarseMesh.GetElement(elem_index)->GetVolume(det);
00095     }
00096 }
00097 
00098 template<unsigned DIM>
00099 double AveragedSourcePde<DIM>::ComputeConstantInUSourceTerm(const ChastePoint<DIM>& rX, Element<DIM,DIM>* pElement)
00100 {
00101     return 0.0;
00102 }
00103 
00104 template<unsigned DIM>
00105 double AveragedSourcePde<DIM>::ComputeLinearInUCoeffInSourceTerm(const ChastePoint<DIM>& rX, Element<DIM,DIM>* pElement) // now takes in element
00106 {
00107     assert(!mCellDensityOnCoarseElements.empty());
00108     return mCoefficient * mCellDensityOnCoarseElements[pElement->GetIndex()];
00109 }
00110 
00111 template<unsigned DIM>
00112 c_matrix<double,DIM,DIM> AveragedSourcePde<DIM>::ComputeDiffusionTerm(const ChastePoint<DIM>& rX)
00113 {
00114     return identity_matrix<double>(DIM);
00115 }
00116 
00117 template<unsigned DIM>
00118 double AveragedSourcePde<DIM>::GetUptakeRateForElement(unsigned elementIndex)
00119 {
00120     return this->mCellDensityOnCoarseElements[elementIndex];
00121 }
00122 
00124 // Explicit instantiation
00126 
00127 template class AveragedSourcePde<1>;
00128 template class AveragedSourcePde<2>;
00129 template class AveragedSourcePde<3>;
00130 
00131 // Serialization for Boost >= 1.36
00132 #include "SerializationExportWrapperForCpp.hpp"
00133 EXPORT_TEMPLATE_CLASS_SAME_DIMS(AveragedSourcePde)
Generated on Thu Dec 22 13:00:05 2011 for Chaste by  doxygen 1.6.3