Effacer les filtres
Effacer les filtres

Parameter exchange between Simscape Custom Block and MATLAB

2 vues (au cours des 30 derniers jours)
Remo
Remo le 12 Juin 2014
Commenté : Cyril CRIER le 7 Juil 2022
I'm quite new to Simulink/Simscape and currently i am working on some custom blocks by using the Simscape language.
Is there any possibility to use parameters and variables from the MATLAb workspace in a custom block in Simulink/Simscape? I can't find a hint in the Simscape language guide. If not, is there a similar function to use these parameters with standard Simulink blocks? Thanks a lot!
  2 commentaires
Hakan
Hakan le 30 Juil 2015
Hi! You could set up your parameters in the parameter section. Thus you get a nice dialog, where you can input your workspace variables.
Cyril CRIER
Cyril CRIER le 7 Juil 2022
Hello Hakan,
I've the issue right now where I want to use a Base Workspace's Variable in the section "parameter", but this one is not recognized...
parameters
% Add parameters here
Inertia = { TGWeight*(Lever_COG_Close*10^-3)^2, 'kg*m^2' }; % Inertia
AB = {108.4819, "mm"}; % Distance between pivot points on stator
AC = {521.1536, "mm"}; % Distance between pivot points on tailgate
end
TGWeight and Lever_COG_Close are declared through another script first but I get this error window when I browse the file I wanna use for the custom block:
Is there a solution?
Thanks

Connectez-vous pour commenter.

Réponses (1)

Lincoln Emilio Bowen Aguayo
Lincoln Emilio Bowen Aguayo le 16 Juin 2015
You can use variables on SimScape from the script of Matlab, like this:
assignin('base', 'the name of your variable', 'the value');
and if you want to run your program, you can do this:
model = 'The name of your SimScape/Simulink program'; load_system(model); open_system(model);

Catégories

En savoir plus sur Foundation and Custom Domains dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by