SLIDE  3.0.0
A simulator for lithium-ion battery pack degradation
Loading...
Searching...
No Matches
StressParam.hpp
Go to the documentation of this file.
1/*
2 * StressParam.hpp
3 *
4 *
5 *
6 * Created on: 28 Jun 2022
7 * Author(s): Jorn Reniers, Volkan Kumtepeli
8 *
9 */
10
11#pragma once
12
13namespace slide::param {
15{
17 double omegap;
18 double omegan;
19 double Ep;
20 double En;
21 double nup;
22 double nun;
23
25 bool s_dai{ false };
26 bool s_lares{ false };
27 bool s_dai_update{ false };
28 bool s_lares_update{ false };
29 double s_dai_p{};
30 double s_dai_n{};
31 double s_lares_n{};
32 double s_dai_p_prev{};
33 double s_dai_n_prev{};
34 double s_lares_n_prev{};
35 double s_dt{ 1 };
36};
37} // namespace slide::param
Definition: CSparam.hpp:12
Definition: StressParam.hpp:15
bool s_lares
do we need to calculate the stress according to Laresgoiti's model?
Definition: StressParam.hpp:26
double nun
Poisson's ratio of negative electrode [-].
Definition: StressParam.hpp:22
bool s_dai_update
boolean to indicate if Dai's stress are up to date with the battery state at this time step
Definition: StressParam.hpp:27
bool s_dai
do we need to calculate the stress according to Dai's model?
Definition: StressParam.hpp:25
double Ep
Young's modulus of positive electrode [GPa].
Definition: StressParam.hpp:19
double s_dai_n_prev
maximum hydrostatic stress in the previous time step in the negative particle according to Dai's stre...
Definition: StressParam.hpp:33
double s_lares_n
stress in the negative particle according to Laresgoiti's stress model
Definition: StressParam.hpp:31
double omegap
< Constants for the stress model
Definition: StressParam.hpp:17
double s_lares_n_prev
stress in the previous time step in the negative particle according to Laresgoiti's stress model
Definition: StressParam.hpp:34
double omegan
partial molar volume of negative electrode [m3 mol-1]
Definition: StressParam.hpp:18
double nup
Poisson's ratio of positive electrode [-].
Definition: StressParam.hpp:21
double s_dai_n
maximum hydrostatic stress in the negative particle according to Dai's stress model
Definition: StressParam.hpp:30
double En
Young's modulus of negative electrode [GPa].
Definition: StressParam.hpp:20
double s_dt
time period between the 'previous' and 'current' stress [s]
Definition: StressParam.hpp:35
double s_dai_p
maximum hydrostatic stress in the positive particle according to Dai's stress model
Definition: StressParam.hpp:29
bool s_lares_update
boolean to indicate if Dai's stress are up to date with the battery state at this time step
Definition: StressParam.hpp:28
double s_dai_p_prev
maximum hydrostatic stress in the previous time step in the positive particle according to Dai's stre...
Definition: StressParam.hpp:32