SpaceConvergenceTester.hpp

00001 /*
00002 
00003 Copyright (C) University of Oxford, 2005-2009
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 
00030 #ifndef SPACECONVERGENCETESTER_HPP_
00031 #define SPACECONVERGENCETESTER_HPP_
00032 
00033 
00034 #include "AbstractConvergenceTester.hpp"
00035 
00036 template<class CELL, class CARDIAC_PROBLEM, unsigned DIM, unsigned PROBLEM_DIM>
00037 class SpaceConvergenceTester : public AbstractConvergenceTester<CELL, CARDIAC_PROBLEM, DIM, PROBLEM_DIM>
00038 {
00039 public:
00040     void SetInitialConvergenceParameters()
00041     {
00042         this->MeshNum=0;
00043     }
00044     void UpdateConvergenceParameters()
00045     {
00046         this->MeshNum++;
00047 
00048     }
00049     bool GiveUpConvergence()
00050     {
00051         switch(DIM)
00052         {
00053             case 1:
00054             {
00055                 return this->MeshNum>6;
00056                 break;
00057             }
00058             case 2:
00059             {
00060                 return this->MeshNum>6;
00061                 break;
00062             }
00063             case 3:
00064             {
00065                 return this->MeshNum>4;
00066                 break;
00067             }
00068             default:
00069                 assert(0);
00070                 return true;//To keep Inntel compiler happy
00071         }
00072         return true;//To keep Intel compiler happy
00073     }
00074     double Abscissa()
00075     {
00076         unsigned mesh_size = (unsigned) pow(2, this->MeshNum+2); // number of elements in each dimension
00077         return this->mMeshWidth/(double) mesh_size;
00078     }
00079 
00080     int GetMeshNum()
00081     {
00082         return (int) this->MeshNum; //unsigned -> int is just cosmetic here.  (The test looks prettier).
00083     }
00084     double GetSpaceStep()
00085     {
00086         unsigned mesh_size = (unsigned) pow(2, this->MeshNum+2);// number of elements in each dimension
00087         double scaling = this->mMeshWidth/(double) mesh_size;
00088         return scaling;
00089     }
00090 
00091 };
00092 
00093 #endif /*SPACECONVERGENCETESTER_HPP_*/

Generated on Wed Mar 18 12:51:50 2009 for Chaste by  doxygen 1.5.5