SLIDE  3.0.0
A simulator for lithium-ion battery pack degradation
Loading...
Searching...
No Matches
cell_limits.hpp
Go to the documentation of this file.
1/*
2 * cell_limits.hpp
3 *
4 * Created on: 07 Feb 2022
5 * Author(s): Jorn Reniers, Volkan Kumtepeli
6 */
7
8#pragma once
9
10#include "../settings/settings.hpp"
11
12namespace slide {
14{
15 using data_type = double;
16 data_type Vmin{ 2.7 }, Vmax{ 4.2 };
17 data_type VMIN{ 2.0 }, VMAX{ 4.3 };
19};
20
22} // namespace slide
constexpr double Tmax_Cell_K
the maximum temperature allowed in the simulation [K]
Definition: settings.hpp:44
constexpr double Tmin_Cell_K
the minimum temperature allowed in the simulation [K]
Definition: settings.hpp:43
Slide namespace contains all the types, classes, and functions for the simulation framework.
Definition: Cell.hpp:27
constexpr CellLimits defaultCellLimits
Definition: cell_limits.hpp:21
Definition: cell_limits.hpp:14
data_type Vmin
Definition: cell_limits.hpp:16
data_type VMIN
Definition: cell_limits.hpp:17
data_type Vmax
minimum / maximum voltage [V]
Definition: cell_limits.hpp:16
data_type Tmin
Definition: cell_limits.hpp:18
data_type Tmax
minimum / maximum temperature;
Definition: cell_limits.hpp:18
double data_type
Definition: cell_limits.hpp:15
data_type VMAX
lower / upper safety cut-off limit [V]
Definition: cell_limits.hpp:17