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 "DeltaNotchOdeSystem.hpp" 00030 #include "CellwiseOdeSystemInformation.hpp" 00031 00032 DeltaNotchOdeSystem::DeltaNotchOdeSystem(double meanDelta, std::vector<double> stateVariables) 00033 : AbstractOdeSystem(3) 00034 { 00035 mpSystemInfo.reset(new CellwiseOdeSystemInformation<DeltaNotchOdeSystem>); 00036 00048 SetDefaultInitialCondition(0, 1.0); // soon overwritten 00049 SetDefaultInitialCondition(1, 1.0); // soon overwritten 00050 SetDefaultInitialCondition(2, 0.5); 00051 00052 if (stateVariables != std::vector<double>()) 00053 { 00054 SetStateVariables(stateVariables); 00055 } 00056 } 00057 00058 DeltaNotchOdeSystem::~DeltaNotchOdeSystem() 00059 { 00060 } 00061 00062 void DeltaNotchOdeSystem::EvaluateYDerivatives(double time, const std::vector<double>& rY, std::vector<double>& rDY) 00063 { 00064 double notch = rY[0]; 00065 double delta = rY[1]; 00066 double mean_delta = rY[2]; 00067 00068 00069 // The next two lines define the ODE system by Collier et al. (1996) 00070 double dx1 = mean_delta*mean_delta/(0.01 + mean_delta*mean_delta) - notch; 00071 double dx2 = 1/(1 + 100*notch*notch) - delta; 00072 00073 rDY[0] = dx1; 00074 rDY[1] = dx2; 00075 rDY[2] = 0.0; // don't change the mean Delta level over the course of the mechanics time step 00076 } 00077 00078 template<> 00079 void CellwiseOdeSystemInformation<DeltaNotchOdeSystem>::Initialise() 00080 { 00081 this->mVariableNames.push_back("Notch"); 00082 this->mVariableUnits.push_back("non-dim"); 00083 this->mInitialConditions.push_back(0.0); // will be filled in later 00084 00085 this->mVariableNames.push_back("Delta"); 00086 this->mVariableUnits.push_back("non-dim"); 00087 this->mInitialConditions.push_back(0.0); // will be filled in later 00088 00089 this->mVariableNames.push_back("Mean Delta"); 00090 this->mVariableUnits.push_back("non-dim"); 00091 this->mInitialConditions.push_back(0.0); // will be filled in later 00092 00093 this->mInitialised = true; 00094 } 00095 00096 // Serialization for Boost >= 1.36 00097 #include "SerializationExportWrapperForCpp.hpp" 00098 CHASTE_CLASS_EXPORT(DeltaNotchOdeSystem)