Optimization of Battery Design for a EV
1 次查看(过去 30 天)
显示 更早的评论
How does one setup the requirement optimization function for Optimizing the Battery Design through Response Optimization App on Vehicle Composer ?
The function is of the nature : min f(x) = w1*ECR + w2*Cost
I have run the baseline simulation, now I want to do a optimization study, But I am new to this enviroment and I am trying to understand how does one setup the Optimization function for the EV.
Refrence : https://www.mathworks.com/videos/master-class-fulfill-range-acceleration-and-cost-targets-using-battery-sizing-1669124206915.html
0 个评论
回答(1 个)
Sam Chak
2023-11-17
Hi @Shardul
I didn't watch the video. However, with the cost function, you apply the optimizer:
fun = @costfun;
x0 = 1;
A = -1;
b = 0;
x = fmincon(fun, x0, A, b)
% Cost function
function J = costfun(x)
w1 = 1; % a constant
w2 = 1; % a constant
ECR = x.^2 - 5*x + 6; % a formula in terms of x
Cost = tanh(x).^2; % a formula in terms of x
J = w1*ECR + w2*Cost;
end
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!