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
Hi MarcBerliner. I want to catch the outlier during battery operation, that is, if the temperature is set too high, the current and voltage will change abnormally during battery operation. BBut in my previous attempts, if I set it this way, the program would report an error. May I ask if this data can be obtained through Petlion? If so, is there a suitable example? Looking forward to your reply, thank you.
The text was updated successfully, but these errors were encountered:
This isn't explicitly accounted for, but there is a workaround. Say you want to run a CC-CV simulation
p =petlion(LCO)
sol =simulate(p, I=5, SOC=0)
simulate!(sol, p, V=:hold)
which crashes with the message
julia> ERROR: Model failed to converge at t =101.5279999999999
To save the output, first initialize the solution object sol and enclose your simulation loop in a try/catch block. The solve still fails, but you can access the final states before failure.
Hi MarcBerliner. I want to catch the outlier during battery operation, that is, if the temperature is set too high, the current and voltage will change abnormally during battery operation. BBut in my previous attempts, if I set it this way, the program would report an error. May I ask if this data can be obtained through Petlion? If so, is there a suitable example? Looking forward to your reply, thank you.
The text was updated successfully, but these errors were encountered: