How do I select different value of resistances depending on the control input.

2 次查看(过去 30 天)
I wish to simulate a system with changing resistive loads. I want to select different value of resistance depending on the value of my control signal. How can I achieve this?
  1 个评论
Iain
Iain 2013-5-31
We need more details to be more helpful. Are you working in matlab, or simulink. What's your control signal? What kind of change to the load do you expect from your control signal?

请先登录,再进行评论。

回答(2 个)

David Sanchez
David Sanchez 2013-5-31
An option is to create your own function with the switch-case statement
switch control
case 1
resistance = 100;
case 2
resistance = 1000;
case 3
resistance = 10000;
end

Muruganandham Subramanian
编辑:Muruganandham Subramanian 2013-5-31
Use MultiportSwitch
  1 个评论
Ashwini
Ashwini 2013-6-4
I am now using a 'variable resistor' block from simscape and that has solved my problem.
I appreciate help from all of you. Thanks

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Switches and Breakers 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by