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 #include "FitzHughNagumo1961OdeSystem.hpp" 00029 #include "OdeSystemInformation.hpp" 00030 #include <cmath> 00031 00035 FitzHughNagumo1961OdeSystem::FitzHughNagumo1961OdeSystem( 00036 AbstractIvpOdeSolver *pOdeSolver, 00037 AbstractStimulusFunction *pIntracellularStimulus) 00038 : AbstractCardiacCell(pOdeSolver, 2, 0, pIntracellularStimulus) 00039 { 00040 mpSystemInfo = OdeSystemInformation<FitzHughNagumo1961OdeSystem>::Instance(); 00041 00042 AbstractCardiacCell::Init(); 00043 } 00044 00045 00049 FitzHughNagumo1961OdeSystem::~FitzHughNagumo1961OdeSystem(void) 00050 { 00051 } 00052 00059 void FitzHughNagumo1961OdeSystem::EvaluateYDerivatives(double time, const std::vector<double> &rY, std::vector<double>& rDY) 00060 { 00061 double membrane_V = rY[0]; // v 00062 double recovery_variable = rY[1]; // w 00063 00064 double i_stim = GetStimulus(time); 00065 00066 // dV/dt 00067 double membrane_V_prime = membrane_V*(membrane_V-mAlpha)*(1-membrane_V)-recovery_variable+i_stim; 00068 // do not update voltage if the mSetVoltageDerivativeToZero flag has been set 00069 if (mSetVoltageDerivativeToZero) 00070 { 00071 membrane_V_prime = 0; 00072 } 00073 00074 // dw/dt 00075 double recovery_variable_prime = mEpsilon*(membrane_V-mGamma*recovery_variable); 00076 00077 rDY[0] = membrane_V_prime; 00078 rDY[1] = recovery_variable_prime; 00079 } 00080 00081 double FitzHughNagumo1961OdeSystem::GetIIonic() 00082 { 00083 double membrane_V = mStateVariables[mVoltageIndex]; 00084 double recovery_variable = mStateVariables[1]; 00085 double fake_ionic_current = membrane_V*(membrane_V-mAlpha)*(1-membrane_V)-recovery_variable; 00086 return fake_ionic_current; 00087 } 00088 00089 00090 00091 00092 template<> 00093 void OdeSystemInformation<FitzHughNagumo1961OdeSystem>::Initialise(void) 00094 { 00095 /* 00096 * State variables 00097 */ 00098 this->mVariableNames.push_back("V"); 00099 this->mVariableUnits.push_back("mV"); 00100 this->mInitialConditions.push_back(0.0); 00101 00102 this->mVariableNames.push_back("w"); 00103 this->mVariableUnits.push_back(""); 00104 this->mInitialConditions.push_back(0.0); 00105 00106 this->mInitialised = true; 00107 }