Chaste  Release::3.4
AbstractCvodeCellWithDataClamp.cpp
1 /*
2 
3 Copyright (c) 2005-2016, University of Oxford.
4 All rights reserved.
5 
6 University of Oxford means the Chancellor, Masters and Scholars of the
7 University of Oxford, having an administrative office at Wellington
8 Square, Oxford OX1 2JD, UK.
9 
10 This file is part of Chaste.
11 
12 Redistribution and use in source and binary forms, with or without
13 modification, 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 
23 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
27 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
29 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32 OF 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 "AbstractCvodeCellWithDataClamp.hpp"
43 #include "Exception.hpp"
44 #include "HeartConfig.hpp"
46 #include <algorithm>
47 
48 
49 AbstractCvodeCellWithDataClamp::AbstractCvodeCellWithDataClamp(boost::shared_ptr<AbstractIvpOdeSolver> pSolver/* unused */,
50  unsigned numberOfStateVariables,
51  unsigned voltageIndex,
52  boost::shared_ptr<AbstractStimulusFunction> pIntracellularStimulus)
53  : AbstractCvodeCell(pSolver, numberOfStateVariables, voltageIndex, pIntracellularStimulus),
54  mDataAvailable(false),
55  mDataClampIsOn(false)
56 {
57 }
58 
60 {
61 }
62 
63 void AbstractCvodeCellWithDataClamp::SetExperimentalData(std::vector<double> experimentalTimes,
64  std::vector<double> experimentalVoltages)
65 {
66  assert(experimentalVoltages.size()==experimentalTimes.size());
67  assert(experimentalVoltages.size()>1u);
68  mExperimentalTimes = experimentalTimes;
69  mExperimentalVoltages = experimentalVoltages;
70  mDataAvailable = true;
71 }
72 
73 double AbstractCvodeCellWithDataClamp::GetExperimentalVoltageAtTimeT(const double& rTime) // Linearly interpolate between data points
74 {
75  if (!mDataClampIsOn)
76  {
77  // For speed we want to be able to skip this method.
78  return DOUBLE_UNSET;
79  }
80 
81  if (rTime > mExperimentalTimes.back() || rTime < mExperimentalTimes[0])
82  {
83  EXCEPTION("The requested time " << rTime << " is outside the times stored in the data clamp.");
84  }
85 
86  std::vector<double>::iterator low;
87  low = std::upper_bound(mExperimentalTimes.begin(), mExperimentalTimes.end(), rTime);
88 
89  // Special case - here the lower bound is equal to upper bound and both are pointing to end!
90  if (low == mExperimentalTimes.end())
91  {
92  return mExperimentalVoltages.back();
93  }
94 
95  unsigned upper_index = low - mExperimentalTimes.begin();
96 
97  if (upper_index == 0u)
98  {
99  // Special case - here the lower bound is equal to upper bound and no interpolation needed
100  return mExperimentalVoltages[0];
101  }
102 
103  double lower_time = mExperimentalTimes[upper_index-1];
104  double increment = rTime - lower_time;
105  double time_step = mExperimentalTimes[upper_index] - mExperimentalTimes[upper_index-1];
106  double voltage_step = mExperimentalVoltages[upper_index] - mExperimentalVoltages[upper_index-1];
107  return mExperimentalVoltages[upper_index-1] + increment * voltage_step / time_step;
108 
109 // // Alternative simpler(?) method that used to be here.
110 // // A simple loop over a std::vector<double> is probably fairly efficient?
111 // unsigned i;
112 // for (i=1u; i<mExperimentalTimes.size(); i++)
113 // {
114 // if (mExperimentalTimes[i] >= rTime)
115 // {
116 // break;
117 // }
118 // }
119 //
120 // double step_size = mExperimentalTimes[i] - mExperimentalTimes[i-1];
121 // double increment = rTime - mExperimentalTimes[i-1];
122 // double data_difference = mExperimentalVoltages[i] - mExperimentalVoltages[i-1];
123 //
124 // return mExperimentalVoltages[i-1] + increment*data_difference/step_size;
125 }
126 
128 {
129  this->SetParameter("membrane_data_clamp_current_conductance",0);
130  mDataClampIsOn = false;
131 }
132 
134 {
135  if (!mDataAvailable)
136  {
137  EXCEPTION("Before calling TurnOnDataClamp(), please provide experimental data via the SetExperimentalData() method.");
138  }
139  assert(mExperimentalTimes.size() > 1u);
140  this->SetParameter("membrane_data_clamp_current_conductance", conductance);
141  mDataClampIsOn = true;
142 }
143 
144 #endif // CHASTE_CVODEWITHDATACLAMP
AbstractCvodeCellWithDataClamp(boost::shared_ptr< AbstractIvpOdeSolver > pSolver, unsigned numberOfStateVariables, unsigned voltageIndex, boost::shared_ptr< AbstractStimulusFunction > pIntracellularStimulus)
#define EXCEPTION(message)
Definition: Exception.hpp:143
void SetParameter(const std::string &rParameterName, double value)
const double DOUBLE_UNSET
Definition: Exception.hpp:56
double GetExperimentalVoltageAtTimeT(const double &rTime)
void SetExperimentalData(std::vector< double > experimentalTimes, std::vector< double > experimentalVoltages)