Chaste Commit::f2ff7ee04e70ac9d06c57344df8d017dbb12b97b
NhsModelWithBackwardSolver.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#include "NhsModelWithBackwardSolver.hpp"
37#include <iostream>
38#include <cmath>
39#include "LogFile.hpp"
40#include "Exception.hpp"
41#include "TimeStepper.hpp"
42
44
53
54void NhsModelWithBackwardSolver::CalculateCaTropAndZDerivatives(double calciumTroponin, double z, double Q,
55 double& dCaTrop, double& dz)
56{
57//As in straight Nhs, we don't cover the exception code
58// LCOV_EXCL_START
59 if (calciumTroponin < 0)
60 {
61 EXCEPTION("CalciumTrop concentration went negative");
62 }
63 if (z<0)
64 {
65 EXCEPTION("z went negative");
66 }
67 if (z>1)
68 {
69 EXCEPTION("z became greater than 1");
70 }
71// LCOV_EXCL_STOP
72
73 double T0 = CalculateT0(z);
74
75 double Ta;
76 if (Q>0)
77 {
78 Ta = T0*(1+(2+mA)*Q)/(1+Q);
79 }
80 else
81 {
82 Ta = T0*(1+mA*Q)/(1-Q);
83 }
84
85 dCaTrop = mKon * mCalciumI * ( mCalciumTroponinMax - calciumTroponin)
86 - mKrefoff * (1-Ta/(mGamma*mTref)) * calciumTroponin;
87
88 double ca_trop_to_ca_trop50_ratio_to_n = pow(calciumTroponin/mCalciumTrop50, mN);
89
90 dz = mAlpha0 * ca_trop_to_ca_trop50_ratio_to_n * (1-z)
91 - mAlphaR1 * z
92 - mAlphaR2 * pow(z,mNr) / (pow(z,mNr) + pow(mKZ,mNr));
93}
94
95void NhsModelWithBackwardSolver::CalculateBackwardEulerResidual(double calciumTroponin, double z, double Q,
96 double& residualComponent1, double& residualComponent2)
97{
98 double dcatrop;
99 double dz;
100 CalculateCaTropAndZDerivatives(calciumTroponin,z,Q,dcatrop,dz);
101
102 residualComponent1 = calciumTroponin - mDt*dcatrop - mTemporaryStateVariables[0];
103 residualComponent2 = z - mDt*dz - mTemporaryStateVariables[1];
104}
105
110
111void NhsModelWithBackwardSolver::RunDoNotUpdate(double startTime, double endTime, double timestep)
112{
113 assert(startTime < endTime);
114
115 mDt = timestep;
116
118
119 // loop in time
120 TimeStepper stepper(startTime, endTime, timestep);
121
122 while ( !stepper.IsTimeAtEnd() )
123 {
125 // Q1,Q2,Q3 using backward euler can solved straightaway
127 double new_Q = ImplicitSolveForQ();
128
130 // Solve the 2D nonlinear problem for Backward Euler Ca_trop and z
132
133 // see what the residual is
134 double catrop_guess = mTemporaryStateVariables[0];
135 double z_guess = mTemporaryStateVariables[1];
136 double f1,f2; // f=[f1,f2]=residual
137
138 CalculateBackwardEulerResidual(catrop_guess, z_guess, new_Q, f1, f2);
139 double norm_resid = sqrt(f1*f1+f2*f2);
140
141 // solve using Newton's method, no damping. Stop if num iterations
142 // reaches 15 (very conservative)
143 unsigned counter = 0;
144 while ((norm_resid>mTolerance) && (counter++<15))
145 {
146 // numerically approximate the jacobian J
147 double j11,j12,j21,j22; // J = [j11, j12; j21 j22]
148 double temp1,temp2;
149
150 double h = std::max(fabs(catrop_guess/100),1e-8);
151 CalculateBackwardEulerResidual(catrop_guess+h, z_guess, new_Q, temp1, temp2);
152 j11 = (temp1-f1)/h;
153 j21 = (temp2-f2)/h;
154
155 h = std::max(fabs(z_guess/100),1e-8);
156 CalculateBackwardEulerResidual(catrop_guess, z_guess+h, new_Q, temp1, temp2);
157 j12 = (temp1-f1)/h;
158 j22 = (temp2-f2)/h;
159
160 // compute u = J^{-1} f (exactly, as a 2D problem)
161 double one_over_det = 1.0/(j11*j22-j12*j21);
162 double u1 = one_over_det*(j22*f1 - j12*f2);
163 double u2 = one_over_det*(-j21*f1 + j11*f2);
164
165 catrop_guess -= u1;
166 z_guess -= u2;
167
168 CalculateBackwardEulerResidual(catrop_guess, z_guess, new_Q, f1, f2);
169 norm_resid = sqrt(f1*f1+f2*f2);
170 }
171 assert(counter<15); // if this fails, see corresponding code in old NhsModelWithImplicitSolver
172
173 mTemporaryStateVariables[0] = catrop_guess;
174 mTemporaryStateVariables[1] = z_guess;
175
176 stepper.AdvanceOneTimeStep();
177 }
178}
179
181{
184
185 if (Q>0)
186 {
187 return T0*(1+(2+mA)*Q)/(1+Q);
188 }
189 else
190 {
191 return T0*(1+mA*Q)/(1-Q);
192 }
193}
194
195void NhsModelWithBackwardSolver::RunAndUpdate(double startTime, double endTime, double timestep)
196{
197 RunDoNotUpdate(startTime, endTime, timestep);
199}
200
#define EXCEPTION(message)
static const double mAlpha3
static const double mTref
static const double mAlpha2
static const double mAlphaR2
static const double mA3
static const double mAlpha1
static const double mAlphaR1
static const double mAlpha0
static const double mKrefoff
static const double mGamma
static const unsigned mNr
static const unsigned mN
double CalculateT0(double z)
static const double mKon
static const double mA1
static const double mCalciumTroponinMax
static const double mKZ
static const double mA2
void RunDoNotUpdate(double startTime, double endTime, double timestep)
void CalculateCaTropAndZDerivatives(double calciumTroponin, double z, double Q, double &dCaTrop, double &dz)
void RunAndUpdate(double startTime, double endTime, double timestep)
void CalculateBackwardEulerResidual(double calciumTroponin, double z, double Q, double &residualComponent1, double &residualComponent2)
bool IsTimeAtEnd() const
void AdvanceOneTimeStep()