53 std::vector<c_vector<double, SPACE_DIM> > forces = this->ComputeForcesIncludingDamping();
57 node_iter != this->mpCellPopulation->rGetMesh().GetNodeIteratorEnd();
61 const c_vector<double, SPACE_DIM>& r_old_location = node_iter->rGetLocation();
62 c_vector<double, SPACE_DIM> displacement = dt * forces[index];
65 this->DetectStepSizeExceptions(node_iter->GetIndex(), displacement, dt);
67 c_vector<double, SPACE_DIM> new_location = r_old_location + displacement;
68 this->SafeNodePositionUpdate(node_iter->GetIndex(), new_location);