Gelöste Aufgaben/JUMP/Battery

Aus numpedia
Zur Navigation springen Zur Suche springen

← Back to Start

Scope

Our Block-Diagram

The battery is our power-supply. Depending on the discharging current IB consumed by our drive-train, the battery will display a voltage UB.

We are looking for a mathematical model that accounts for discharging operations only and we are not interested in high-frequency load-idle-cycles. Long-term changes of battery-parameters are out of scope.

We copy the typical specifications for a LiPo battery used for RC Model Cars to be:

  • total capacity: QB0 = 5000 mAh,
  • voltage: UB0 = 11.1 V,
  • C-rating: 25.

The C-rating refers to the rate of energy the battery can safely discharge continuously, represented in terms of current as a multiple of its overall capacity. The maximum continuous current for this battery is

IB,max=5000mAh251/h=125A

Also we need to model the battery heat to avoid excessive temperatures TB of the battery.

Structure

Our model accounts for two aspects:

  1. power delivery and
  2. temperature.

Both aspects are related in the sense that discharging operations with high currents lead to high battery-temperatures which will reduce the effective battery capacity.

The equivalent block-diagram of our model is this:

The battery-current IB entails a battery voltage UB and Temperature TB.

Power Delivery

Battery Equivalent Circuit Diagram

We employ a standard battery model which accounts for

  • E: the equilibrium potential
  • R1, R2: two internal resistances and
  • C: an effective capacitance.

In a steady-state-condition, the battery voltage UB is thus a function of the battery current IB.

Temperature

Battery Heat Rates.

Our simple lumped-body model accounts for heat generation inside the battery and heat dissipation over its surface.

In steady-state condition, they are equal, if heat generation Q˙H exceeds heat dissipation Q˙D, the battery heat increases - und thus its temperature.

Model

Power Delivery

Using Kirchhoff’s laws and from the model-diagram of the electric-circuit of the battery, we find the equilibrium conditions

UB=U1+U2+E(SD) where E(SD):=UE and IB=IC+IR2.

The potential E is a function of the effective battery capacity or the commonly used dimensionless “state of dischange”

SD=QB0QB(t)QB0.
Characteristic of Electrochemical Potential.

E(SD) depends in a complex way on the electrochemical processes within the battery. We account for this functional relationship using a characteristic curve which we copy from literature.

In operation, the reference battery capacity QB0 is being consumed by the current IB, thus

Q˙B=α(IB)β(TB)IB,

where α is a correction-factor accounting for the current IB and β accounting for the battery-temperature TB. The effect of α can be seen in the diagram above where Ie > Iref.

For a representation of this function, we choose an appropriate polynomial with

e(SD):=E(QB)U0=05CiSDi

Its unknown coefficients Ci will be identified from the characteristic above. The components of the electric circuit provide these equations

U1=R1IB,U2=R2IR2,IC=CdU2dt.

with α, β being current- and temperature-related correction factors respectively.

With the nominal battery capacity QB0 and the actual capacity QB, we have the commonly employed state of discharge SD to be

SD=1QB00tα(IB)β(T)IBdt=1QB(t)QB0.

/*******************************************************/
/* MAXIMA script                                       */
/* version: wxMaxima 18.10.1                           */
/* author: Andreas Baumgart                            */
/* last updated: 2021-02-08                            */
/* ref: Modelling and Simulation (TUAS)                */
/* description: Rounding between straight line-segments*/
/*******************************************************/

/*******************************************************/
/* declarations                                        */
/*******************************************************/
declare("ω",alphabetic);
declare("α",alphabetic);
declare("β",alphabetic);

/*******************************************************/
/* equations of motion                                 */
/*******************************************************/
/* Kirchhoff's law     */
KL : [U[0] = E+U[1]+U[2],
      U[1] = R[1]*I[1],
      U[2] = R[2]*I[2],
      I[1] = I[2]+I[C],
      I[C] = C*'diff(U[2],t),
      'diff(Q[B],t) = α*β*I[1],
      s = Q[B]/Q[R],
      /*             */
      m[B]*c[PB]*'diff(T[B],t)=R[1]*I[1]^2+R[2]*I[2]^2-H[B]*(T[B]-T[0])];

battery: ratsimp([subst(KL[2],KL[1]),
                  subst(solve(KL[3],I[2]), subst(solve(KL[4],I[C]), solve(KL[5],'diff(U[2],t))[1])),
		  KL[6],KL[7],KL[8]]);

/* Characteristic curve for E */
/*                            */
E(s) := sum(c[i]*s^i,i,0,5);

bc : [subst([s=0],E(s))=V[0],E(1)=0,
      subst([s=0],diff(E(s),s))=S[0],subst([s=1],diff(E(s),s))=S[2],
      E(6/10)=V[1],subst([s=6/10],diff(E(s),s))=S[1]];

params: [V[0]=4,S[0]=-1.5,V[1]=3.7,S[1]=-0.4,S[2]=-30];

sol : solve(subst(params,bc),makelist(c[i],i,0,5))[1];
plot2d(subst(sol,E(s)),[s,0,1], [xlabel,"SoD"], [ylabel,"U[0]"]);




Temperature

The thermodynamic balance-equation of heat yields

Q˙T=Q˙HQ˙D.
Nomenclature "Q":
Note that Q is used here as the heat of the battery – not as the battery-capacity as above!

The battery heat is a function of

  • temperature TB,
  • averaged specific heat capacity cp,B and
  • battery mass mB.

so that

Q˙T=mBcBdTdt.

Heat generation inside the battery be

Q˙H=R1IB2+R2IR22.

and heat dissipation

Q˙D=hB(TBT0)

with ambient air temperature T0 and the coefficient of heat transfer hB.


/* none given */




Summary

Thus, the battery-coordinates are

q_B=(QB(t)U2(t)TB(t))

with the associated equations of motion

Q˙B=α(IB)β(T)IB and SD=QB(t)QB0QB0,U˙2=ICC,T˙B=1mBcB(Q˙HQ˙D)

and additional algebraic equation

Q˙H=R1IB2+R2I22 where I2=U2R2UB=R1IB+U2+E(SD),Q˙D=HB(TB(t)T0).

Variables

name symbol unit
battery remaining capacity QB A h
capacitance voltage UB2 V
battery temperature TB °C

Parameters

The coefficients Ci for e(SD) have been computed from conditions for a 5th-order polynomial by defining function-values and gradients at reference points:

C0=1110,C1=1,C2=1177240,C3=284892160,C4=7891432,C5=4355432
Implemented Characteristic

The plot right shows the resultant characteristic of e(SD):

For the remaining parameters, no measurements were available. We adopted those to obtain a performance similar to what has been described in [1], the resistors were chosen as to “deliver” reasonable amounts of heat when the battery is discharged with rating of C=25.

  • R1 = 500 mΩ
  • R2 = 250 mΩ
  • C = 500 F
  • QB0 = 5000 Ah
  • T0 = 20°C

For α and β we know that their gradients

dαdIB>0

and

dβdT<0.

The reference curve from above shall be assumed to be valid for IB = 20 A and we assume

α(IB)=1+IBIα with Iα=100Aβ(T)=1TBTβ with Tβ=100C

Then, for the thermal model we have

  • mB = 340 g,
  • cp,B = 2 J/(kg K).

And finally hB will be identified from a (virtual) experiment: let IB = 0, I2=0 (no heat generation) and the initial battery-temperature to be ΔT(0) above T0. Then assume that ΔT(3min) is reduced to 50% of ΔT(0). From above, we find the differential equation to be

ΔT(t)=ΔT0ehBtmBcPB,

thus for this “experiment”

hB=(log(2)mBcPB)/3 min.

With the values given above, we find

hB=2.6E-3 J/(Ks)

Let the tolerable, maximum battery temperature be

TB,max=60C.
name symbol value unit
battery mass mB 340 g
specific heat capacity (averaged) cpB 1015 J/(kg*K)
resistor 1 R1 0.05 Ω
resistor 2 R2 0.025 Ω
capacity QB0 5000 Ah
battery discharge rating 1C 25 A
battery reference potential voltage U0 8 V
ambient temperature T0 20 °C
time it takes to let the battery cool down by 50% T50 180 s
correction value for current IB Iα 100 A
correction value for current TB Tβ 100 °C

next workpackage: car-body →


References

  1. Lijun Gao, Shengyi Liu; Roger A. Dougal: Dynamic Lithium-Ion Battery Model for System Simulation, IEEE TRANSACTIONS ON COMPONENTS AND PACKAGING TECHNOLOGIES, VOL. 25, NO. 3, SEPTEMBER 2002 pp. 495
  2. P. Villano, M. Carewska, S. Passerini: Specific heat capacity of lithium polymer battery components; Elsevier, Thermochimica Acta 402 (2003) 219–224