lsqnonlin (lsqcurvefit , fmincon) does not change the variables in an optimization process to find the best fit

38 views (last 30 days)
I'm perfoming an optimization of parameters. The main difference between my work and a regular curvefiiting problem is that the function that should be fitted is one that obtains x-y data from a third party simulation software. Here is the main section of the code:
u_test = []; f_test = []; % Anything
x0 = [22,280];
force = @(x) sim_res(x,u_test,f_test) - f_test;
x = lsqnonlin(force,x0,[4,199],[40,350]);
and here is the function that goes into another software (ABAQUS) and obtains some simulation results (a set of x-y data):
function force = sim_res(x,u_test,f_test)
inp_initial(x(1),x(2)); % Replaces new coefficients for new iteration
pause(2)
system('abaqus job=Al.inp user=NONLINEAR.for cpus=4 interactive' )
pause(2)
while exist('Al.lck','file')==2 % Some files have to be deleted
pause(0.1)
end
while exist('Al.odb','file')==0 % Some files have to be deleted
pause(0.1)
end
[dis,force] = Read_ODB_outputs_node(); % Another function that obtains results
plot(dis,force,u_test,f_test)
% Some files have to be deleted
delete('Al.prt');
delete('Al.com');
delete('Al.sim');
delete('Al.dat');
delete('Al.log');
end
The problem is that lsqnonlin does not change the initial values of x and after 2-3 iterations, the process stops and converges. The same happens with lsqcurvefit and fmincon. Can anyone find a solution for this?
Thanks in advance

Accepted Answer

Torsten
Torsten on 25 Mar 2024
Moved: Torsten on 25 Mar 2024
We don't know if you get modified values for the array "force" from "ABAQUS" if the input vector "x" to "sim_res" is slightly changed by "lsqnonlin". If this is not the case, "lsqnonlin" will think that changing the parameters does not change the objective function and stops - usually with the message that the initial point is optimal.
  13 Comments
Esi Tesi
Esi Tesi on 2 Apr 2024 at 9:52
I've tried these vaues (1e-6, 1e-3, 1e-2, 1e-1) for FiniteDifferenceStepSize and got the same result that after a few iterations, the solver gets stuck at some specific x value and iterates on them without any progress. Is there any option or parameter that controls this action?
Torsten
Torsten on 2 Apr 2024 at 9:57
I don't know the reason. Most probably, the values coming from ABAQUS are too inexact. This would cause that computing reliable derivatives with respect to the parameters being fitted fails.

Sign in to comment.

More Answers (1)

Matt J
Matt J on 26 Mar 2024
Edited: Matt J on 26 Mar 2024

Community Treasure Hunt

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

Start Hunting!