I have a problen related to battery simulation charging and discharging

2 次查看(过去 30 天)
I have already aske dhelp from matlab for this qn but now its different while simulation delay of 20 min should be applied to both charging and discharging but in output the delay is applied only for charging and when discharging it should charge from 0 to 30A in the current slope but its charging from -30 to 30 its wrong can you help me applying delay in both sides and adjust the current from 0 to 30 please and sorry for the disturbance

回答(1 个)

Joel Van Sickel
Joel Van Sickel 2023-2-16
2 things.
  1. remove the memory block. you don't need it with the transport delay
  2. you are missing the edge condition -
if(Stateprev == 1 && SOC > 99)
test = 1;
end
if you look at that edge case, this is where your dicontinuity in your signal exists. You need to clean up your if else statements to handle this case, which right now will default to ibatt = Idis.

类别

Help CenterFile Exchange 中查找有关 Sources 的更多信息

产品


版本

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by