svMultiPhysics
Loading...
Searching...
No Matches
cep_ion.h
1// SPDX-FileCopyrightText: Copyright (c) Stanford University, The Regents of the University of California, and others.
2// SPDX-License-Identifier: BSD-3-Clause
3
4#ifndef CEP_ION_H
5#define CEP_ION_H
6
7#include "Array.h"
8#include "ComMod.h"
9#include "Simulation.h"
10
11#include "all_fun.h"
12#include "consts.h"
13
14#include <string>
15
16namespace cep_ion {
17
18void cep_init(Simulation* simulation);
19
20void cep_init_l(CepMod& cep_mod, cepModelType& cep, int nX, int nG, Vector<double>& X, Vector<double>& Xg);
21
22void cep_integ(Simulation* simulation, const int iEq, const int iDof, const Array<double>& Dg);
23
24void cep_integ_l(CepMod& cep_mod, cepModelType& cep, int nX, int nG, Vector<double>& X, Vector<double>& Xg,
25 const double t1, double& yl, const double I4f, const double dt);
26
27};
28
29#endif
30
Definition CepMod.h:193
Definition Simulation.h:14
The Vector template class is used for storing int and double data.
Definition Vector.h:23
Cardiac electrophysiology model type.
Definition CepMod.h:131