Chaste Commit::f2ff7ee04e70ac9d06c57344df8d017dbb12b97b
AbstractCvodeCell.cpp
1/*
2
3Copyright (c) 2005-2024, University of Oxford.
4All rights reserved.
5
6University of Oxford means the Chancellor, Masters and Scholars of the
7University of Oxford, having an administrative office at Wellington
8Square, Oxford OX1 2JD, UK.
9
10This file is part of Chaste.
11
12Redistribution and use in source and binary forms, with or without
13modification, are permitted provided that the following conditions are met:
14 * Redistributions of source code must retain the above copyright notice,
15 this list of conditions and the following disclaimer.
16 * Redistributions in binary form must reproduce the above copyright notice,
17 this list of conditions and the following disclaimer in the documentation
18 and/or other materials provided with the distribution.
19 * Neither the name of the University of Oxford nor the names of its
20 contributors may be used to endorse or promote products derived from this
21 software without specific prior written permission.
22
23THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
27LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
29GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33
34*/
35
36#ifdef CHASTE_CVODE
37
38#include <sstream>
39#include <iostream>
40#include <cmath>
41
42#include "AbstractCvodeCell.hpp"
43#include "Exception.hpp"
44#include "HeartConfig.hpp"
46
47
48AbstractCvodeCell::AbstractCvodeCell(boost::shared_ptr<AbstractIvpOdeSolver> /* unused */,
49 unsigned numberOfStateVariables,
50 unsigned voltageIndex,
51 boost::shared_ptr<AbstractStimulusFunction> pIntracellularStimulus)
52 : AbstractCardiacCellInterface(boost::shared_ptr<AbstractIvpOdeSolver>(), voltageIndex, pIntracellularStimulus),
53 AbstractCvodeSystem(numberOfStateVariables),
54 mMaxDt(DOUBLE_UNSET)
55{
56}
57
58
62
68
70{
71 assert(mStateVariables);
73 SetFixedVoltage(voltage);
74}
75
76
78{
79 SetTimestep(maxDt); // Note: SetTimestep() sets the maximum timestep.
80}
81
83{
84 mMaxDt = maxDt;
85}
86
88{
89 return mMaxDt;
90}
91
92
93void AbstractCvodeCell::SolveAndUpdateState(double tStart, double tEnd)
94{
95 if (mMaxDt == DOUBLE_UNSET)
96 {
97 SetTimestep(HeartConfig::Instance()->GetPrintingTimeStep());
98 }
99 Solve(tStart, tEnd, mMaxDt);
100}
101
102OdeSolution AbstractCvodeCell::Compute(double tStart, double tEnd, double tSamp)
103{
104 if (tSamp == 0.0)
105 {
107 }
108 if (mMaxDt == DOUBLE_UNSET)
109 {
110 SetTimestep(tSamp);
111 }
112 return Solve(tStart, tEnd, mMaxDt, tSamp);
113}
114
115
116void AbstractCvodeCell::ComputeExceptVoltage(double tStart, double tEnd)
117{
118 double saved_voltage = GetVoltage();
119
121 SolveAndUpdateState(tStart, tEnd);
123
124 SetVoltage(saved_voltage); // In case of naughty models
125
126#ifndef NDEBUG
127 // Note that tests which rely on this throwing (e.g. such-and-such a variable is out of range)
128 // ought to be annotated with the NDEBUG macro
130#endif // NDEBUG
131}
132
133
142
147
152
154{
155 std::vector<double> state_variables(GetNumberOfStateVariables());
157 return state_variables;
158}
159
160const std::vector<std::string>& AbstractCvodeCell::rGetStateVariableNames() const
161{
163}
164
165void AbstractCvodeCell::SetStateVariables(const std::vector<double>& rVariables)
166{
167 N_Vector vars = MakeNVector(rVariables);
169 DeleteVector(vars);
170}
171
176
177void AbstractCvodeCell::SetStateVariable(unsigned index, double newValue)
178{
180}
181
182void AbstractCvodeCell::SetStateVariable(const std::string& rName, double newValue)
183{
185}
186
187double AbstractCvodeCell::GetAnyVariable(const std::string& rName, double time)
188{
189 return AbstractCvodeSystem::GetAnyVariable(rName,time);
190}
191
192double AbstractCvodeCell::GetParameter(const std::string& rParameterName)
193{
194 return AbstractCvodeSystem::GetParameter(rParameterName);
195}
196
197double AbstractCvodeCell::GetParameter(unsigned parameterIndex)
198{
199 return AbstractCvodeSystem::GetParameter(parameterIndex);
200}
201
202void AbstractCvodeCell::SetParameter(const std::string& rParameterName, double value)
203{
204 AbstractCvodeSystem::SetParameter(rParameterName,value);
205}
206
207#endif // CHASTE_CVODE
const double DOUBLE_UNSET
Definition Exception.hpp:57
void DeleteVector(VECTOR &rVec)
N_Vector MakeNVector(const std::vector< double > &rSrc)
void CopyToStdVector(const VECTOR &rSrc, std::vector< double > &rDest)
virtual void SetVoltageDerivativeToZero(bool clamp=true)
void SetVoltageDerivativeToZero(bool clamp=true)
double GetAnyVariable(const std::string &rName, double time=0.0)
unsigned GetNumberOfParameters() const
void SetTimestep(double maxDt)
void SetStateVariables(const std::vector< double > &rVariables)
double GetParameter(const std::string &rParameterName)
virtual void SolveAndUpdateState(double tStart, double tEnd)
const std::vector< std::string > & rGetStateVariableNames() const
std::vector< double > GetStdVecStateVariables()
void SetStateVariable(unsigned index, double newValue)
void SetVoltage(double voltage)
OdeSolution Compute(double tStart, double tEnd, double tSamp=0.0)
void SetParameter(const std::string &rParameterName, double value)
unsigned GetNumberOfStateVariables() const
void ComputeExceptVoltage(double tStart, double tEnd)
void SetMaxTimestep(double maxDt)
AbstractCvodeCell(boost::shared_ptr< AbstractIvpOdeSolver > pSolver, unsigned numberOfStateVariables, unsigned voltageIndex, boost::shared_ptr< AbstractStimulusFunction > pIntracellularStimulus)
OdeSolution Solve(realtype tStart, realtype tEnd, realtype maxDt, realtype tSamp)
void SetStateVariables(const N_Vector &rStateVariables)
double GetAnyVariable(unsigned index, double time=0.0, N_Vector *pDerivedQuantities=NULL)
void SetStateVariable(unsigned index, double newValue)
void SetAnyVariable(unsigned index, double value)
void SetParameter(const std::string &rName, double value)
const std::vector< std::string > & rGetStateVariableNames() const
double GetPrintingTimeStep() const
static HeartConfig * Instance()