DiffusionCaUpdateRule.cpp
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
00033
00034
00035
00036 #include "DiffusionCaUpdateRule.hpp"
00037
00038 template<unsigned DIM>
00039 DiffusionCaUpdateRule<DIM>::DiffusionCaUpdateRule()
00040 : AbstractCaUpdateRule<DIM>(),
00041 mDiffusionParameter(0.5)
00042 {
00043 }
00044
00045 template<unsigned DIM>
00046 DiffusionCaUpdateRule<DIM>::~DiffusionCaUpdateRule()
00047 {
00048 }
00049
00050 template<unsigned DIM>
00051 double DiffusionCaUpdateRule<DIM>::EvaluateProbability(unsigned currentNodeIndex,
00052 unsigned targetNodeIndex,
00053 CaBasedCellPopulation<DIM>& rCellPopulation,
00054 double dt,
00055 double deltaX,
00056 CellPtr cell)
00057 {
00058 c_vector<double, DIM> node_index_location = rCellPopulation.GetNode(currentNodeIndex)->rGetLocation();
00059 c_vector<double, DIM> node_neighbour_location = rCellPopulation.GetNode(targetNodeIndex)->rGetLocation();
00060
00061 return (mDiffusionParameter*dt/(2* pow(norm_2(rCellPopulation.rGetMesh().GetVectorFromAtoB(node_index_location, node_neighbour_location)), 2)));
00062 }
00063
00064 template<unsigned DIM>
00065 double DiffusionCaUpdateRule<DIM>::GetDiffusionParameter()
00066 {
00067 return mDiffusionParameter;
00068 }
00069
00070 template<unsigned DIM>
00071 void DiffusionCaUpdateRule<DIM>::SetDiffusionParameter(double diffusionParameter)
00072 {
00073 mDiffusionParameter = diffusionParameter;
00074 }
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088 template<unsigned DIM>
00089 void DiffusionCaUpdateRule<DIM>::OutputUpdateRuleParameters(out_stream& rParamsFile)
00090 {
00091 *rParamsFile << "\t\t\t<DiffusionParameter>" << mDiffusionParameter << "</DiffusionParameter>\n";
00092
00093
00094 AbstractCaUpdateRule<DIM>::OutputUpdateRuleParameters(rParamsFile);
00095 }
00096
00098
00100
00101 template class DiffusionCaUpdateRule<1u>;
00102 template class DiffusionCaUpdateRule<2u>;
00103 template class DiffusionCaUpdateRule<3u>;
00104
00105
00106 #include "SerializationExportWrapperForCpp.hpp"
00107 EXPORT_TEMPLATE_CLASS_SAME_DIMS(DiffusionCaUpdateRule)