SLIDE  3.0.0
A simulator for lithium-ion battery pack degradation
Loading...
Searching...
No Matches
cell_data.hpp
Go to the documentation of this file.
1/*
2 * cell_data.hpp
3 *
4 * Created on: 07 Feb 2022
5 * Author(s): Jorn Reniers, Volkan Kumtepeli
6 */
7
8#pragma once
9
10#include "../State.hpp"
11#include "../Histogram.hpp"
12
13#include <iostream>
14
15namespace slide {
16
18{
19 // int ID; // #TODO the ID of the (dis)charge Maybe ID in future.
20 double charge;
21 double energy;
23 double convloss;
24};
25
27{
28 using value_type = float;
33};
34
36{
38};
39
41
43{
44 double Timetot;
45 double Icells;
46 double Vcells;
47 double Tbatt;
48 double convloss;
49};
50
51} // namespace slide
Definition: Histogram.hpp:31
Slide namespace contains all the types, classes, and functions for the simulation framework.
Definition: Cell.hpp:27
Definition: cell_data.hpp:27
value_type I
current [A]
Definition: cell_data.hpp:29
value_type V
voltage [V]
Definition: cell_data.hpp:30
value_type T
Temperature [K].
Definition: cell_data.hpp:32
value_type SOC
State of charge [0-1].
Definition: cell_data.hpp:31
float value_type
Definition: cell_data.hpp:28
Definition: cell_data.hpp:43
double Icells
total current to the battery compartment [A]
Definition: cell_data.hpp:45
double Timetot
total time [s]
Definition: cell_data.hpp:44
double convloss
losses in the power electronic converter [W]
Definition: cell_data.hpp:48
double Tbatt
temperature of the battery container [K]
Definition: cell_data.hpp:47
double Vcells
total voltage of the battery compartment [V]
Definition: cell_data.hpp:46
Definition: cell_data.hpp:36
Histogram V
Definition: cell_data.hpp:37
Histogram I
Definition: cell_data.hpp:37
Histogram T
histograms for current, voltage, temperature
Definition: cell_data.hpp:37
Definition: cell_data.hpp:18
double coolSystemLoad
the energy [Wh] required to run the cooling system of the battery in every cycle
Definition: cell_data.hpp:22
double charge
the charge throughput of every (dis)charge
Definition: cell_data.hpp:20
double convloss
the energy losses in the power electronic converter [Wh] in every cycle
Definition: cell_data.hpp:23
double energy
the energy throughput of every (dis)charge
Definition: cell_data.hpp:21
Definition: State.hpp:24