Battery Geometries
We support multidimensional geometries (from 1D to 3D). The geometry is part of the input data and must be setup up before a simulation. The base class BatteryGenerator provides a template to construct the battery geometry, which includes a mesh for all the components (Coatings, sepators, current collectors…) and the coupling between those as the main output.
To create our grids, we rely essentially on the grid generation functions provided by MRST. We use also the visualization tools available there, see here.
Standard geometries can often be parameterized, meaning that a small set parameters is enough to construct the whole geometrical model. We have implemented some standard geometries and provide here examples with an illustration and a list of the parameters used to produce this illustration. The parameters can be passed through json interface and aref described in some more detail in the geometry json schema.
BatteryGeneratorP2D
The geometrical model is 1D. Here, for the sake of the illustration, we plot a corresponding 3D model.
Parameter |
Name |
Value |
---|---|---|
length of negative current collector |
|
25 μm |
length of negative active material |
|
64 μm |
length of separator |
|
15 μm |
length of positive active material |
|
57 μm |
length of positive current collector |
|
15 μm |
discretization number for negative current collector |
|
10 |
discretization number for negative active material |
|
10 |
discretization number for separator |
|
10 |
discretization number for positive current collector |
|
10 |
discretization number for positive active material |
|
10 |
Face area |
|
3 cm^2 |
BatteryGeneratorP3D
The geometrical model is 2D.
Parameter |
Name |
Default value |
---|---|---|
length of negative current collector |
|
10 μm |
length of negative active material |
|
100 μm |
length of separator |
|
50 μm |
length of positive active material |
|
80 μm |
length of positive current collector |
|
10 μm |
length in y direction |
|
1 cm |
discretization number for negative current collector |
|
10 |
discretization number for negative active material |
|
10 |
discretization number for separator |
|
10 |
discretization number for positive current collector |
|
10 |
discretization number for positive active material |
|
10 |
discretization number in y direction |
|
10 |
BatteryGeneratorP4D
A 3D geometrical model consising only of one layer with one tab on each current collector.
An illustration with different scalings for each axes which shows the different component:
Parameter |
Name |
Default value |
---|---|---|
x-length of first tab |
|
4 cm |
x-length between the tabs |
|
2 cm |
x-length of last tab |
|
4cm |
y-length of first tab |
|
1mn |
y-length between the tabs |
|
2 cm |
y-length of last tab |
|
1 mm |
length of negative current collector |
|
10 μm |
length of negative active material |
|
100 μm |
length of separator |
|
50 μm |
length of positive active material |
|
80 μm |
length of positive current collector |
|
10 μm |
discretization number in z-direction for separator |
|
3 |
discretization number in z-direction for positive active material |
|
3 |
discretization number in z-direction for negative active material |
|
3 |
discretization number in z-direction for negative current collector |
|
2 |
discretization number in z-direction for positive current collector |
|
2 |
discretization number in x-direction interior region |
|
3 |
discretization number in x-direction negative tab region |
|
3 |
discretization number in x-direction positive tab region |
|
3 |
discretization number in y-direction interior region |
|
4 |
discretization number in y-direction negative tab region |
|
2 |
discretization number in y-direction positive tab region |
|
2 |
SpiralBatteryGenerator
A geometry model for jelly rolls. Here, we have used parameters corresponding to th 4680 model.
Component |
Key name |
Length |
N |
---|---|---|---|
Separator |
|
50 μm |
3 |
Negative Electrode Coating |
|
94 μm |
3 |
Negative Electrode Current Collector |
|
25 μm |
3 |
Positive Electrode Coating |
|
84 μm |
3 |
Positive Electrode Current Collector |
|
10 μm |
3 |
Parameter |
Name |
Value |
---|---|---|
number of windings in the spiral |
|
52 |
Inner Radius correspoding to the empty space in the middle |
|
2 mm |
Height of the battery |
|
70 mm |
number of cells in the angular direction |
|
20 |
number of discretization cells in the longitudonal |
|
10 |
There are parameters for the tabs that we do not detail here, see json schema. The json source is available here.
CoinCellBatteryGenerator
A geometrical model for a coin cell.
Component |
Key name |
Thickness |
Diameter |
Nl |
---|---|---|---|---|
Negative electrode current collector |
|
0.73 mm |
20 mm |
9 |
Negative electrode coating |
|
50 μm |
16 mm |
3 |
Separator |
|
20 μm |
18 mm |
2 |
Positive electrode coating |
|
67 μm |
16 mm |
3 |
Positive electrode current collector |
|
0.73 mm |
20 mm |
9 |
Parameter |
Name |
Value |
---|---|---|
Discretization number in radial direction |
|
7 |
Discretization number in angular direction |
|
30 |
BatteryGeneratorMultilayerPouch
A geometrical model for a multi-layer pouch cell.
Component |
Name |
Thickness |
Nl |
---|---|---|---|
Negative electrode current collector |
|
10 µm |
2 |
Negative electrode coating |
|
100 µm |
3 |
Separator |
|
50 μm |
3 |
Positive electrode coating |
|
80 μm |
3 |
Positive electrode current collector |
|
10 µm |
2 |
Parameter |
Name |
Value |
---|---|---|
Number of Layers |
|
5 |
Width of the cell |
|
10 cm |
Length of the cell |
|
10 cm |
Discretization number for width |
|
2 |
Discretization number for length outside the tab |
|
2 |
Tabs width (same for negative and positive) |
|
5 cm |
Tabs discretization number |
|
3 |
Tab lenght of negative electrode |
|
4 cm |
Tab length of positive electrode |
|
2 cm |
See json source file for this example.