AbstractTwoBodyInteractionForce.cpp

00001 /*
00002 
00003 Copyright (C) University of Oxford, 2005-2010
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 "AbstractTwoBodyInteractionForce.hpp"
00030 
00031 
00032 template<unsigned DIM>
00033 AbstractTwoBodyInteractionForce<DIM>::AbstractTwoBodyInteractionForce()
00034    : AbstractForce<DIM>(),
00035      mUseCutOffLength(false),
00036      mMechanicsCutOffLength(DBL_MAX)
00037 {
00038 }
00039 
00040 template<unsigned DIM>
00041 bool AbstractTwoBodyInteractionForce<DIM>::GetUseCutOffLength()
00042 {
00043     return mUseCutOffLength;
00044 }
00045 
00046 template<unsigned DIM>
00047 void AbstractTwoBodyInteractionForce<DIM>::SetCutOffLength(double cutOffLength)
00048 {
00049     assert(cutOffLength > 0.0);
00050     mUseCutOffLength = true;
00051     mMechanicsCutOffLength=cutOffLength;
00052 }
00053 
00054 
00055 template<unsigned DIM>
00056 double AbstractTwoBodyInteractionForce<DIM>::GetCutOffLength()
00057 {
00058     return mMechanicsCutOffLength;
00059 }
00060 
00061 
00062 template<unsigned DIM>
00063 void AbstractTwoBodyInteractionForce<DIM>::AddForceContribution(std::vector<c_vector<double, DIM> >& rForces,
00064                                                                 AbstractCellPopulation<DIM>& rCellPopulation)
00065 {
00066     if (rCellPopulation.IsMeshBasedCellPopulation())
00067     {
00068         MeshBasedCellPopulation<DIM>* p_static_cast_cell_population = static_cast<MeshBasedCellPopulation<DIM>*>(&rCellPopulation);
00069 
00070         // Iterate over all springs and add force contributions
00071         for (typename MeshBasedCellPopulation<DIM>::SpringIterator spring_iterator = p_static_cast_cell_population->SpringsBegin();
00072             spring_iterator != p_static_cast_cell_population->SpringsEnd();
00073             ++spring_iterator)
00074         {
00075             unsigned nodeA_global_index = spring_iterator.GetNodeA()->GetIndex();
00076             unsigned nodeB_global_index = spring_iterator.GetNodeB()->GetIndex();
00077 
00078             // Calculate the force between nodes
00079             c_vector<double, DIM> force = CalculateForceBetweenNodes(nodeA_global_index, nodeB_global_index, rCellPopulation);
00080 
00081             // Add the force contribution to each node
00082             rForces[nodeB_global_index] -= force;
00083             rForces[nodeA_global_index] += force;
00084         }
00085     }
00086     else
00087     {
00088         std::set< std::pair<Node<DIM>*, Node<DIM>* > >& r_node_pairs = (static_cast<NodeBasedCellPopulation<DIM>*>(&rCellPopulation))->rGetNodePairs();
00089 
00090         assert(DIM==2); // 3d boxes not implemented yet - if fails nightly uncomment the double node loop below
00091                         // and use that for the 3d case
00092         for (typename std::set< std::pair<Node<DIM>*, Node<DIM>* > >::iterator iter = r_node_pairs.begin();
00093             iter != r_node_pairs.end();
00094             iter++)
00095         {
00096             std::pair<Node<DIM>*, Node<DIM>* > pair = *iter;
00097 
00098             unsigned node_a_index = pair.first->GetIndex();
00099             unsigned node_b_index = pair.second->GetIndex();
00100 
00101             // Calculate the force between nodes
00102             c_vector<double, DIM> force = CalculateForceBetweenNodes(node_a_index, node_b_index, rCellPopulation);
00103             for (unsigned j=0; j<DIM; j++)
00104             {
00105                 assert(!std::isnan(force[j]));
00106             }
00107 
00108             // Add the force contribution to each node
00109             rForces[node_a_index] += force;
00110             rForces[node_b_index] -= force;
00111         }
00112 
00113 //        // Iterate over nodes
00114 //        for (unsigned node_a_index=0; node_a_index<rCellPopulation.GetNumNodes(); node_a_index++)
00115 //        {
00116 //            // Iterate over nodes
00117 //            for (unsigned node_b_index=node_a_index+1; node_b_index<rCellPopulation.GetNumNodes(); node_b_index++)
00118 //            {
00119 //                // Calculate the force between nodes
00120 //                c_vector<double, DIM> force = CalculateForceBetweenNodes(node_a_index, node_b_index, rCellPopulation);
00121 //                for (unsigned j=0; j<DIM; j++)
00122 //                {
00123 //                    assert(!std::isnan(force[j]));
00124 //                }
00125 //
00126 //                // Add the force contribution to each node
00127 //                rForces[node_a_index] += force;
00128 //                rForces[node_b_index] -= force;
00129 //            }
00130 //        }
00131     }
00132 }
00133 
00134 template<unsigned DIM>
00135 void AbstractTwoBodyInteractionForce<DIM>::OutputForceParameters(out_stream& rParamsFile)
00136 {
00137     *rParamsFile << "\t\t\t<UseCutOffLength>" << mUseCutOffLength << "</UseCutOffLength> \n";
00138     *rParamsFile << "\t\t\t<CutOffLength>" << mMechanicsCutOffLength << "</CutOffLength> \n";
00139 
00140     // Call direct parent class
00141     AbstractForce<DIM>::OutputForceParameters(rParamsFile);
00142 }
00143 
00145 // Explicit instantiation
00147 
00148 template class AbstractTwoBodyInteractionForce<1>;
00149 template class AbstractTwoBodyInteractionForce<2>;
00150 template class AbstractTwoBodyInteractionForce<3>;

Generated on Mon Nov 1 12:35:16 2010 for Chaste by  doxygen 1.5.5