CEPS  24.01
Cardiac ElectroPhysiology Simulator
TTP06 Class Reference

Detailed Description

ten-Tusscher Panvilov ionic model (3 variants)

Reference:

Alternans and spiral breakup in a human ventricular tissue model, K.H.W.J. ten Tusscher, A.V. Panfilov, Sep 2006, American Journal of Physiology, Heart and Circulatory Physiology, 291 3, H1088-1100. PubMed ID: 16565318

https://models.physiomeproject.org/exposure/a7179d94365ff0c9c0e6eb7c6a787d3d/ten_tusscher_model_2006_IK1Ko_endo_units.cellml/view https://models.physiomeproject.org/exposure/a7179d94365ff0c9c0e6eb7c6a787d3d/ten_tusscher_model_2006_IK1Ko_M_units.cellml/view https://models.physiomeproject.org/exposure/a7179d94365ff0c9c0e6eb7c6a787d3d/ten_tusscher_model_2006_IK1Ko_epi_units.cellml/view

Definition at line 48 of file TTP06.hpp.

#include <TTP06.hpp>

Inheritance diagram for TTP06:
[legend]

Public Types

enum class  Type { Endo , MidMyo , Epi }
 Model variant selector. More...
 

Public Member Functions

 TTP06 (const Type &type, Unknown *u, const CepsSet< CepsAttribute > &attrs={}, InputParameters *params=nullptr)
 Constructor (sets constant parameters) More...
 
virtual ~TTP06 ()=default
 Destructor. More...
 
void getInitialCondition (CepsReal *v, CepsReal *y) const final
 Sets initial values of state variables and transmembrane voltage for a single point. Arrays y,dty must be preallocated with size m_nStateVars. More...
 
void computeRates (CepsReal t, CepsReal *y, CepsReal *v, CepsReal *dtyL, CepsReal *dtyNL, CepsReal *dtv, DegreeOfFreedom *dof) const final
 Get the linear and non linear part of the evolution function f. Also computes the ionic current. More...
 
- Public Member Functions inherited from AbstractIonicModel
virtual ~AbstractIonicModel ()
 Destructor. More...
 
CepsString getName () const
 Name of the solver for info display. More...
 
UnknowngetUnknown () const
 The unknown object of the transmembrane voltage. More...
 
ScalarField< DegreeOfFreedom > * getCm () const
 Link to Cm coefficient of PDE. More...
 
void setCm (ScalarField< DegreeOfFreedom > *)
 Link to Cm coefficient of PDE. More...
 
CepsReal getPaperCm (CepsBool cepsUnit) const
 Get the original value of Cm used in paper. More...
 
CepsReal getPaperStim () const
 Get the original amplitude of stimulation, converted into ceps units. More...
 
void addStimulation (ScalarSourceTerm *stim)
 Links the model to a stimulation function, needed for computation of _ki. More...
 
CepsReal getStimulation (DegreeOfFreedom *x, CepsReal t) const
 Get the sum of all stimulations at time t and dof x. More...
 
virtual CepsUInt getNbStateVariables () const
 The number of state variables, except transmembrane voltage. More...
 
CepsString getStateVariableName (CepsUInt i) const
 Gives the name of the i-th state variable. More...
 
virtual CepsReal convertVoltageFromCepsUnit (const CepsReal &v) const
 Convert voltage from ceps units (mV) to ionic model units. Does nothing by default. More...
 
virtual CepsReal convertVoltageToCepsUnit (const CepsReal &v) const
 Convert voltage from ionic model units to ceps units (mV). Does nothing by default. More...
 
virtual CepsReal convertDtvToCepsUnit (const CepsReal &dtv) const
 Convert current from ionic model units to ceps units (mV ms-1). Does nothing by default. More...
 
virtual CepsReal convertCurrentFromCepsUnit (const CepsReal &i) const
 Convert current from ionic model units to ceps units (uA per cm2). Does nothing by default. More...
 
virtual CepsReal convertCmFromCepsUnit (const CepsReal &cm) const
 Convert capacitance from ceps units (uF/cm2) to ionic model units. Does nothing by default. More...
 
virtual CepsReal convertCmToCepsUnit (const CepsReal &cm) const
 Convert capacitance from ionic model units to ceps units (uF/cm2). Does nothing by default. More...
 
void setLinkedSolver (IonicSolver *solver)
 Links instance to solver. More...
 
IonicSolvergetLinkedSolver () const
 Get link to solver. More...
 
- Public Member Functions inherited from ceps::HoldsAttributes
 HoldsAttributes (const CepsSet< CepsAttribute > &attributes)
 Constructor with any number of attributes. More...
 
 HoldsAttributes (const CepsVector< CepsAttribute > &attributes)
 Constructor with any number of attributes. More...
 
 HoldsAttributes (CepsAttribute *attributes, const CepsUInt &n)
 Constructor with any number of attributes. More...
 
 HoldsAttributes ()=default
 Default constructor. More...
 
 HoldsAttributes (const HoldsAttributes &)=default
 Assignement operator. More...
 
 HoldsAttributes (HoldsAttributes &&) noexcept=default
 Copy constructor. More...
 
virtual ~HoldsAttributes ()=default
 Destructor. More...
 
HoldsAttributesoperator= (const HoldsAttributes &)=default
 Assignment operator. More...
 
HoldsAttributesoperator= (HoldsAttributes &&) noexcept=default
 Assignment operator. More...
 
CepsUInt getNumberOfAttributes () const
 Returns number of attributes of the entity. More...
 
CepsSet< CepsAttribute > & getAttributes ()
 Returns the attributes of the entity. More...
 
const CepsSet< CepsAttribute > & getAttributes () const
 Returns the attributes of the entity, const version. More...
 
void setAttributes (const CepsVector< CepsAttribute > &attributes)
 Sets the attributes of the entity. More...
 
void setAttributes (const CepsSet< CepsAttribute > &attributes)
 Sets the attributes of the entity. More...
 
void setAttributes (const CepsAttribute *attributes, const CepsUInt &n)
 Sets the attributes of the entity. More...
 
template<class _It >
void setAttributes (_It first, _It last)
 Sets the attributes of the entity. More...
 
void addAttribute (const CepsAttribute &name)
 Adds an attribute to the entity. More...
 
void addAttributes (const CepsVector< CepsAttribute > &attributes)
 Adds several attributes to the entity. More...
 
void addAttributes (const CepsSet< CepsAttribute > &attributes)
 Adds several attributes to the entity. More...
 
void addAttributes (const CepsAttribute *attributes, const CepsUInt &n)
 Adds several attributes to the entity. More...
 
template<class _It >
void addAttributes (_It first, _It last)
 Adds several attributes to the entity. More...
 
void removeAttribute (const CepsAttribute &name)
 Removes an attribute from the entity. More...
 
void removeAttributes (const CepsSet< CepsAttribute > &attributes)
 Removes several attributes from the entity. More...
 
void removeAttributes (const CepsVector< CepsAttribute > &attributes)
 Removes several attributes from the entity. More...
 
void removeAttributes (const CepsAttribute *attributes, const CepsUInt &n)
 Removes several attributes from the entity. More...
 
template<class _It >
void removeAttributes (_It first, _It last)
 Removes several attributes from the entity. More...
 
void clearAttributes ()
 Removes all attributes from the entity. More...
 
CepsBool hasAttribute (const CepsAttribute &name) const
 Tells if the entity has the attribute in argument. More...
 
CepsBool hasAllAttributes (const CepsVector< CepsAttribute > &attributes) const
 Tells if the entity has all the attributes in argument. More...
 
CepsBool hasAllAttributes (const CepsAttribute *attributes, const CepsUInt &n) const
 Tells if the entity has all the attributes in argument. More...
 
template<class _It >
CepsBool hasAllAttributes (_It first, _It last) const
 Tells if the entity has all the attributes in argument. More...
 
CepsBool hasOneOfAttributes (const CepsSet< CepsAttribute > &attributes) const
 Tells if the entity has one of the attributes in argument. More...
 
CepsBool hasOneOfAttributes (const CepsVector< CepsAttribute > &attributes) const
 Tells if the entity has one of the attributes in argument. More...
 
CepsBool hasOneOfAttributes (const CepsAttribute *attributes, const CepsUInt &n) const
 Tells if the entity has one of the attributes in argument. More...
 
template<class _It >
CepsBool hasOneOfAttributes (_It first, _It last) const
 Tells if the entity has one of the attributes in argument. More...
 
CepsBool hasUniversalAttribute () const
 Detect if the current entity has the attribute universal. More...
 
void reset ()
 Equivalent to HoldsAttributes::clear() More...
 

Protected Member Functions

void setupWithParameters (InputParameters *p, FunctionDictionary *dico)
 Sets the constants and the space dependant parameters from text inputs. More...
 
- Protected Member Functions inherited from AbstractIonicModel
 AbstractIonicModel (Unknown *u, const CepsSet< CepsAttribute > &attrs={})
 Called only by derived classes. More...
 
CepsReal getCmInternal (CepsReal t, DegreeOfFreedom *dof) const
 Get either the value of cm on dof, or the default value from the paper. More...
 
CepsReal sigmoid (CepsReal x, CepsReal c, CepsReal k) const
 Function often used in rates evaluations. More...
 
CepsReal gaussian (CepsReal x, CepsReal c, CepsReal s) const
 Function often used in rates evaluations. More...
 
CepsReal uOverExpm1u (CepsReal u) const
 Functions u/(1-exp(u)) that returns 2 (from expansion around 0) More...
 

Protected Attributes

Type m_type
 Endo, midmyo or epi. More...
 
CepsReal m_cellSurface
 Surface of cell for unit conversion. More...
 
- Protected Attributes inherited from AbstractIonicModel
Unknownm_unknown
 Pointer on unknown on which the model applies. More...
 
CepsRealm_constants
 Constant parameters of the model, from inputs. More...
 
CepsRealm_dconstants
 Constant parameters of the model, computed from others. More...
 
ScalarField< DegreeOfFreedom > * m_cm
 Link to coef Cm of the PDE, for unit conversion. More...
 
CepsReal m_paperCm
 Original value of Cm. More...
 
CepsReal m_paperStim
 Original stim amplitude. More...
 
CepsVector< ScalarSourceTerm * > m_stims
 Link to excitations. More...
 
CepsUInt m_nStateVars
 Dimensionality of the ODE system, -1 for vm. More...
 
CepsVector< CepsStringm_stateVarNames
 Names of state variables. More...
 
CepsString m_name
 A label for display. More...
 
IonicSolverm_solver
 Link to solver, set when solver is created. More...
 
- Protected Attributes inherited from ceps::HoldsAttributes
CepsSet< CepsAttributem_attributes
 The attributes held by the entity. More...
 

Static Protected Attributes

static constexpr const CepsInt _ki = 0
 Index alias. More...
 
static constexpr const CepsInt _nai = 1
 Index alias. More...
 
static constexpr const CepsInt _cai = 2
 Index alias. More...
 
static constexpr const CepsInt _xr1 = 3
 Index alias. More...
 
static constexpr const CepsInt _xr2 = 4
 Index alias. More...
 
static constexpr const CepsInt _xs = 5
 Index alias. More...
 
static constexpr const CepsInt _m = 6
 Index alias. More...
 
static constexpr const CepsInt _h = 7
 Index alias. More...
 
static constexpr const CepsInt _j = 8
 Index alias. More...
 
static constexpr const CepsInt _cass = 9
 Index alias. More...
 
static constexpr const CepsInt _d = 10
 Index alias. More...
 
static constexpr const CepsInt _f = 11
 Index alias. More...
 
static constexpr const CepsInt _f2 = 12
 Index alias. More...
 
static constexpr const CepsInt _fcass = 13
 Index alias. More...
 
static constexpr const CepsInt _s = 14
 Index alias. More...
 
static constexpr const CepsInt _r = 15
 Index alias. More...
 
static constexpr const CepsInt _casr = 16
 Index alias. More...
 
static constexpr const CepsInt _rprime = 17
 Index alias. More...
 
static constexpr const CepsInt _R = 0
 Index alias. More...
 
static constexpr const CepsInt _T = 1
 Index alias. More...
 
static constexpr const CepsInt _F = 2
 Index alias. More...
 
static constexpr const CepsInt _vc = 3
 Index alias. More...
 
static constexpr const CepsInt _pkna = 4
 Index alias. More...
 
static constexpr const CepsInt _ko = 5
 Index alias. More...
 
static constexpr const CepsInt _nao = 6
 Index alias. More...
 
static constexpr const CepsInt _cao = 7
 Index alias. More...
 
static constexpr const CepsInt _gk1 = 8
 Index alias. More...
 
static constexpr const CepsInt _gkr = 9
 Index alias. More...
 
static constexpr const CepsInt _gks = 10
 Index alias. More...
 
static constexpr const CepsInt _gna = 11
 Index alias. More...
 
static constexpr const CepsInt _gbna = 12
 Index alias. More...
 
static constexpr const CepsInt _gcal = 13
 Index alias. More...
 
static constexpr const CepsInt _gbca = 14
 Index alias. More...
 
static constexpr const CepsInt _gto = 15
 Index alias. More...
 
static constexpr const CepsInt _pnak = 16
 Index alias. More...
 
static constexpr const CepsInt _kmk = 17
 Index alias. More...
 
static constexpr const CepsInt _kmna = 18
 Index alias. More...
 
static constexpr const CepsInt _knaca = 19
 Index alias. More...
 
static constexpr const CepsInt _ksat = 20
 Index alias. More...
 
static constexpr const CepsInt _alpha = 21
 Index alias. More...
 
static constexpr const CepsInt _gamma = 22
 Index alias. More...
 
static constexpr const CepsInt _kmca = 23
 Index alias. More...
 
static constexpr const CepsInt _kmnai = 24
 Index alias. More...
 
static constexpr const CepsInt _gpca = 25
 Index alias. More...
 
static constexpr const CepsInt _kpca = 26
 Index alias. More...
 
static constexpr const CepsInt _gpk = 27
 Index alias. More...
 
static constexpr const CepsInt _k1prime = 28
 Index alias. More...
 
static constexpr const CepsInt _k2prime = 29
 Index alias. More...
 
static constexpr const CepsInt _k3 = 30
 Index alias. More...
 
static constexpr const CepsInt _k4 = 31
 Index alias. More...
 
static constexpr const CepsInt _ec = 32
 Index alias. More...
 
static constexpr const CepsInt _maxsr = 33
 Index alias. More...
 
static constexpr const CepsInt _minsr = 35
 Index alias. More...
 
static constexpr const CepsInt _vrel = 36
 Index alias. More...
 
static constexpr const CepsInt _vxfer = 37
 Index alias. More...
 
static constexpr const CepsInt _kup = 38
 Index alias. More...
 
static constexpr const CepsInt _vleak = 39
 Index alias. More...
 
static constexpr const CepsInt _vmaxup = 40
 Index alias. More...
 
static constexpr const CepsInt _bufc = 41
 Index alias. More...
 
static constexpr const CepsInt _kbufc = 42
 Index alias. More...
 
static constexpr const CepsInt _bufsr = 43
 Index alias. More...
 
static constexpr const CepsInt _kbuf = 44
 Index alias. More...
 
static constexpr const CepsInt _bufss = 45
 Index alias. More...
 
static constexpr const CepsInt _kbufss = 46
 Index alias. More...
 
static constexpr const CepsInt _vsr = 47
 Index alias. More...
 
static constexpr const CepsInt _vss = 48
 Index alias. More...
 

Member Enumeration Documentation

◆ Type

enum TTP06::Type
strong

Model variant selector.

Enumerator
Endo 

Model variant selector.

MidMyo 

Model variant selector.

Epi 

Model variant selector.

Definition at line 54 of file TTP06.hpp.

Constructor & Destructor Documentation

◆ TTP06()

TTP06::TTP06 ( const Type type,
Unknown u,
const CepsSet< CepsAttribute > &  attrs = {},
InputParameters params = nullptr 
)

Constructor (sets constant parameters)

Definition at line 32 of file TTP06.cpp.

◆ ~TTP06()

virtual TTP06::~TTP06 ( )
virtualdefault

Destructor.

Member Function Documentation

◆ computeRates()

void TTP06::computeRates ( CepsReal  t,
CepsReal y,
CepsReal v,
CepsReal dtyL,
CepsReal dtyNL,
CepsReal dtv,
DegreeOfFreedom dof 
) const
finalvirtual

Get the linear and non linear part of the evolution function f. Also computes the ionic current.

Parameters
[in]ttime $t$
[in]yvalue of state variables at time $t$
[in]vvalue of transmembrane voltage at time $t$
[out]dtyLwill be filled with the linear part of the derivative
[out]dtyNLthe non linear part of the derivative
[out]dtvvalue of ionic current at time $t^n$
[in]dofdegree of freedom, in case some coefficients depend on space

Implements AbstractIonicModel.

Definition at line 212 of file TTP06.cpp.

◆ getInitialCondition()

void TTP06::getInitialCondition ( CepsReal v,
CepsReal y 
) const
finalvirtual

Sets initial values of state variables and transmembrane voltage for a single point. Arrays y,dty must be preallocated with size m_nStateVars.

Implements AbstractIonicModel.

Definition at line 139 of file TTP06.cpp.

◆ setupWithParameters()

void TTP06::setupWithParameters ( InputParameters p,
FunctionDictionary dico 
)
protected

Sets the constants and the space dependant parameters from text inputs.

Definition at line 386 of file TTP06.cpp.

Field Documentation

◆ _alpha

constexpr const CepsInt TTP06::_alpha = 21
staticconstexprprotected

Index alias.

Definition at line 145 of file TTP06.hpp.

◆ _bufc

constexpr const CepsInt TTP06::_bufc = 41
staticconstexprprotected

Index alias.

Definition at line 164 of file TTP06.hpp.

◆ _bufsr

constexpr const CepsInt TTP06::_bufsr = 43
staticconstexprprotected

Index alias.

Definition at line 166 of file TTP06.hpp.

◆ _bufss

constexpr const CepsInt TTP06::_bufss = 45
staticconstexprprotected

Index alias.

Definition at line 168 of file TTP06.hpp.

◆ _cai

constexpr const CepsInt TTP06::_cai = 2
staticconstexprprotected

Index alias.

Definition at line 106 of file TTP06.hpp.

◆ _cao

constexpr const CepsInt TTP06::_cao = 7
staticconstexprprotected

Index alias.

Definition at line 131 of file TTP06.hpp.

◆ _casr

constexpr const CepsInt TTP06::_casr = 16
staticconstexprprotected

Index alias.

Definition at line 120 of file TTP06.hpp.

◆ _cass

constexpr const CepsInt TTP06::_cass = 9
staticconstexprprotected

Index alias.

Definition at line 113 of file TTP06.hpp.

◆ _d

constexpr const CepsInt TTP06::_d = 10
staticconstexprprotected

Index alias.

Definition at line 114 of file TTP06.hpp.

◆ _ec

constexpr const CepsInt TTP06::_ec = 32
staticconstexprprotected

Index alias.

Definition at line 156 of file TTP06.hpp.

◆ _f

constexpr const CepsInt TTP06::_f = 11
staticconstexprprotected

Index alias.

Definition at line 115 of file TTP06.hpp.

◆ _F

constexpr const CepsInt TTP06::_F = 2
staticconstexprprotected

Index alias.

Definition at line 126 of file TTP06.hpp.

◆ _f2

constexpr const CepsInt TTP06::_f2 = 12
staticconstexprprotected

Index alias.

Definition at line 116 of file TTP06.hpp.

◆ _fcass

constexpr const CepsInt TTP06::_fcass = 13
staticconstexprprotected

Index alias.

Definition at line 117 of file TTP06.hpp.

◆ _gamma

constexpr const CepsInt TTP06::_gamma = 22
staticconstexprprotected

Index alias.

Definition at line 146 of file TTP06.hpp.

◆ _gbca

constexpr const CepsInt TTP06::_gbca = 14
staticconstexprprotected

Index alias.

Definition at line 138 of file TTP06.hpp.

◆ _gbna

constexpr const CepsInt TTP06::_gbna = 12
staticconstexprprotected

Index alias.

Definition at line 136 of file TTP06.hpp.

◆ _gcal

constexpr const CepsInt TTP06::_gcal = 13
staticconstexprprotected

Index alias.

Definition at line 137 of file TTP06.hpp.

◆ _gk1

constexpr const CepsInt TTP06::_gk1 = 8
staticconstexprprotected

Index alias.

Definition at line 132 of file TTP06.hpp.

◆ _gkr

constexpr const CepsInt TTP06::_gkr = 9
staticconstexprprotected

Index alias.

Definition at line 133 of file TTP06.hpp.

◆ _gks

constexpr const CepsInt TTP06::_gks = 10
staticconstexprprotected

Index alias.

Definition at line 134 of file TTP06.hpp.

◆ _gna

constexpr const CepsInt TTP06::_gna = 11
staticconstexprprotected

Index alias.

Definition at line 135 of file TTP06.hpp.

◆ _gpca

constexpr const CepsInt TTP06::_gpca = 25
staticconstexprprotected

Index alias.

Definition at line 149 of file TTP06.hpp.

◆ _gpk

constexpr const CepsInt TTP06::_gpk = 27
staticconstexprprotected

Index alias.

Definition at line 151 of file TTP06.hpp.

◆ _gto

constexpr const CepsInt TTP06::_gto = 15
staticconstexprprotected

Index alias.

Definition at line 139 of file TTP06.hpp.

◆ _h

constexpr const CepsInt TTP06::_h = 7
staticconstexprprotected

Index alias.

Definition at line 111 of file TTP06.hpp.

◆ _j

constexpr const CepsInt TTP06::_j = 8
staticconstexprprotected

Index alias.

Definition at line 112 of file TTP06.hpp.

◆ _k1prime

constexpr const CepsInt TTP06::_k1prime = 28
staticconstexprprotected

Index alias.

Definition at line 152 of file TTP06.hpp.

◆ _k2prime

constexpr const CepsInt TTP06::_k2prime = 29
staticconstexprprotected

Index alias.

Definition at line 153 of file TTP06.hpp.

◆ _k3

constexpr const CepsInt TTP06::_k3 = 30
staticconstexprprotected

Index alias.

Definition at line 154 of file TTP06.hpp.

◆ _k4

constexpr const CepsInt TTP06::_k4 = 31
staticconstexprprotected

Index alias.

Definition at line 155 of file TTP06.hpp.

◆ _kbuf

constexpr const CepsInt TTP06::_kbuf = 44
staticconstexprprotected

Index alias.

Definition at line 167 of file TTP06.hpp.

◆ _kbufc

constexpr const CepsInt TTP06::_kbufc = 42
staticconstexprprotected

Index alias.

Definition at line 165 of file TTP06.hpp.

◆ _kbufss

constexpr const CepsInt TTP06::_kbufss = 46
staticconstexprprotected

Index alias.

Definition at line 169 of file TTP06.hpp.

◆ _ki

constexpr const CepsInt TTP06::_ki = 0
staticconstexprprotected

Index alias.

Definition at line 104 of file TTP06.hpp.

◆ _kmca

constexpr const CepsInt TTP06::_kmca = 23
staticconstexprprotected

Index alias.

Definition at line 147 of file TTP06.hpp.

◆ _kmk

constexpr const CepsInt TTP06::_kmk = 17
staticconstexprprotected

Index alias.

Definition at line 141 of file TTP06.hpp.

◆ _kmna

constexpr const CepsInt TTP06::_kmna = 18
staticconstexprprotected

Index alias.

Definition at line 142 of file TTP06.hpp.

◆ _kmnai

constexpr const CepsInt TTP06::_kmnai = 24
staticconstexprprotected

Index alias.

Definition at line 148 of file TTP06.hpp.

◆ _knaca

constexpr const CepsInt TTP06::_knaca = 19
staticconstexprprotected

Index alias.

Definition at line 143 of file TTP06.hpp.

◆ _ko

constexpr const CepsInt TTP06::_ko = 5
staticconstexprprotected

Index alias.

Definition at line 129 of file TTP06.hpp.

◆ _kpca

constexpr const CepsInt TTP06::_kpca = 26
staticconstexprprotected

Index alias.

Definition at line 150 of file TTP06.hpp.

◆ _ksat

constexpr const CepsInt TTP06::_ksat = 20
staticconstexprprotected

Index alias.

Definition at line 144 of file TTP06.hpp.

◆ _kup

constexpr const CepsInt TTP06::_kup = 38
staticconstexprprotected

Index alias.

Definition at line 161 of file TTP06.hpp.

◆ _m

constexpr const CepsInt TTP06::_m = 6
staticconstexprprotected

Index alias.

Definition at line 110 of file TTP06.hpp.

◆ _maxsr

constexpr const CepsInt TTP06::_maxsr = 33
staticconstexprprotected

Index alias.

Definition at line 157 of file TTP06.hpp.

◆ _minsr

constexpr const CepsInt TTP06::_minsr = 35
staticconstexprprotected

Index alias.

Definition at line 158 of file TTP06.hpp.

◆ _nai

constexpr const CepsInt TTP06::_nai = 1
staticconstexprprotected

Index alias.

Definition at line 105 of file TTP06.hpp.

◆ _nao

constexpr const CepsInt TTP06::_nao = 6
staticconstexprprotected

Index alias.

Definition at line 130 of file TTP06.hpp.

◆ _pkna

constexpr const CepsInt TTP06::_pkna = 4
staticconstexprprotected

Index alias.

Definition at line 128 of file TTP06.hpp.

◆ _pnak

constexpr const CepsInt TTP06::_pnak = 16
staticconstexprprotected

Index alias.

Definition at line 140 of file TTP06.hpp.

◆ _r

constexpr const CepsInt TTP06::_r = 15
staticconstexprprotected

Index alias.

Definition at line 119 of file TTP06.hpp.

◆ _R

constexpr const CepsInt TTP06::_R = 0
staticconstexprprotected

Index alias.

Definition at line 124 of file TTP06.hpp.

◆ _rprime

constexpr const CepsInt TTP06::_rprime = 17
staticconstexprprotected

Index alias.

Definition at line 121 of file TTP06.hpp.

◆ _s

constexpr const CepsInt TTP06::_s = 14
staticconstexprprotected

Index alias.

Definition at line 118 of file TTP06.hpp.

◆ _T

constexpr const CepsInt TTP06::_T = 1
staticconstexprprotected

Index alias.

Definition at line 125 of file TTP06.hpp.

◆ _vc

constexpr const CepsInt TTP06::_vc = 3
staticconstexprprotected

Index alias.

Definition at line 127 of file TTP06.hpp.

◆ _vleak

constexpr const CepsInt TTP06::_vleak = 39
staticconstexprprotected

Index alias.

Definition at line 162 of file TTP06.hpp.

◆ _vmaxup

constexpr const CepsInt TTP06::_vmaxup = 40
staticconstexprprotected

Index alias.

Definition at line 163 of file TTP06.hpp.

◆ _vrel

constexpr const CepsInt TTP06::_vrel = 36
staticconstexprprotected

Index alias.

Definition at line 159 of file TTP06.hpp.

◆ _vsr

constexpr const CepsInt TTP06::_vsr = 47
staticconstexprprotected

Index alias.

Definition at line 170 of file TTP06.hpp.

◆ _vss

constexpr const CepsInt TTP06::_vss = 48
staticconstexprprotected

Index alias.

Definition at line 171 of file TTP06.hpp.

◆ _vxfer

constexpr const CepsInt TTP06::_vxfer = 37
staticconstexprprotected

Index alias.

Definition at line 160 of file TTP06.hpp.

◆ _xr1

constexpr const CepsInt TTP06::_xr1 = 3
staticconstexprprotected

Index alias.

Definition at line 107 of file TTP06.hpp.

◆ _xr2

constexpr const CepsInt TTP06::_xr2 = 4
staticconstexprprotected

Index alias.

Definition at line 108 of file TTP06.hpp.

◆ _xs

constexpr const CepsInt TTP06::_xs = 5
staticconstexprprotected

Index alias.

Definition at line 109 of file TTP06.hpp.

◆ m_cellSurface

CepsReal TTP06::m_cellSurface
protected

Surface of cell for unit conversion.

Definition at line 101 of file TTP06.hpp.

◆ m_type

Type TTP06::m_type
protected

Endo, midmyo or epi.

Definition at line 99 of file TTP06.hpp.


The documentation for this class was generated from the following files: