changing block parameter during simulation.

3 次查看(过去 30 天)
I am trying to simulate electrical circuit with matlab, but I have inductor and resistor load, I need change their parameters during simulation. Any idea ?
thanks

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2014-5-23
编辑:Azzi Abdelmalek 2014-5-23
Use set_param to modify your block parameters. Use also
set_param(modelName,'SimulationCommand','start'); % to start simulation
set_param(modelName,'SimulationCommand','pause'); % to pause simulation
% Change your parameters with set_param
set_param(modelName,'SimulationCommand','update');
set_param(modelName,'SimulationCommand','continue'); % to continue simulation
  4 个评论
Azzi Abdelmalek
Azzi Abdelmalek 2014-5-23
编辑:Azzi Abdelmalek 2014-5-23
Before changing the parameter use
set_param('igbt_deneme','SimulationCommand','pause')
BARAN Özbakr
BARAN Özbakr 2014-5-23
I am using set_param('igbt_deneme','SimulationCommand','pause'), but it is stll giving an error .

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Simulation and Analysis 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by