Minimization of two simultaneous ODES with shared parameters
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Matterazzi
am 7 Jan. 2023
Bearbeitet: Matterazzi
am 12 Jan. 2023
Hi;
I have a system of two odes having shared k parameters. I want to integrate them using ode23 or similar and optimizing the k values by fitting to experimental data for c. I am lacking experimental data for L since it not assessible for measurement. I am not sure how execute this and any help is very appreciated.
% Two simulat. eqns describing system to be solved.
dcdt = -dcdz/tau + (RHOcat/EPS)*(-k(1)*.c + k(2)*.L);
dLdt = k(1)*.c - k(2)*.L - k(3)*.L;
% Minization of experimental data to model
[k,Rsdnrm,Rsd,ExFlg,OptmInfo,Lmda,Jmat]=lsqcurvefit(@kinetics,k0,t,c)
2 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Sulaymon Eshkabilov
am 8 Jan. 2023
If you all other parameter values, then you can write a fcn handle or function file of the two ODEs. Then find the system solution symbolically.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Particle & Nuclear Physics finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!