You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a simulation (HPPC, CC, Simulate) hits the lower limit of the $SoC$ array it can't pick up that value and charge the Cell.
With $SoC_{min}=10$ % it works:
using LiiBRA
#---------- Cell Definition -----------------#
Sₑ =4
Sₛ =2
Cell =Construct("LG M50")
Spatial!(Cell, Sₑ, Sₛ)
Ŝ =collect(1.0:-0.1:0.1)
SOC =0.1
Cell.Const.T =298.15
A,B,C,D =Realise(Cell,Ŝ);
γ =10; # the duration of the pulse in seconds
λ =-5.# the current in Amperes
Results, tₑ =CC(Cell,Ŝ,SOC,λ,γ,A,B,C,D);
When a simulation (HPPC, CC, Simulate) hits the lower limit of the$SoC$ array it can't pick up that value and charge the $SoC_{min}=10$ % it works:
Cell
.With
But not with$SoC_{min}=0%$
Btw, with
Ŝ = collect(1.0:-0.1:0.0)
,SOC=0.0
:The text was updated successfully, but these errors were encountered: