comsol model to matlab function
15 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a comsol model with various inpute parameters and output the variable Te, Tl it is possible to make a matlab function based in comsol model... ? thank you George
0 commentaires
Réponses (2)
Suresh Palani
le 7 Août 2019
Hi,
I am not sure if you have figured out the solution to your query. In case if you haven't.
If your output is "alpha" and the function with the comsol model is "Objfun".
If your input variables are x,y,z......
Then in your main script
model = mphload('File name');
mphlaunch(model);
x='value';y='value';z='value' (Note x,y,z can be a vector too)
alpha = Objfun(x,y,z,...,model);
Then in your function script
function alpha = Objfun(x,y,z,...,model)
...........
model.param.set('parameter name', x);
model.param.set('parameter name', y);
model.param.set('parameter name', z);
...........
end
0 commentaires
argo yang
le 29 Août 2018
you can use the following command to load a comsol model into matlab in Comsol with matlab model = mphload('test_rec.mph')
0 commentaires
Voir également
Catégories
En savoir plus sur Simscape Multibody dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!