MATLAB: PWM voltage for specific application

pwm voltage generation modesimulink

Can we connect "simulink to ps converter" block terminal to any pwm voltage block and which one?

Best Answer

Yes, you should be able to interface PWM blocks from Simulink and simscape using PS-Simulink and Simulink-PS converters. I know these connections can get a bit confusing sometimes. A while ago, I wrote a brief explanation on this issue on an answer to another question: https://www.mathworks.com/matlabcentral/answers/509668-how-to-check-the-outputs-of-the-incremental-shaft-encoder-in-simulink#comment_809244
I am pasting the same explanation here.
These are few rules which will help you pick the correct blocks.
  1. Simscape signals are different then the normal simulink signals. We need to use converters (PS-Simulink and Simulink-PS blocks) to connect them.
  2. In simscape, there are several libraries. Blocks in each library have special conservative ports and physical signal port. For example, look at this block from simscape electrical . It has two voltage conservative port (marked with small dots), and one physical signal port marked with triangle. The voltage conservative port can only be connected to other blocks in same library (in this case simscape electrical, they cannot be connected with simscape mechanical or even simscape power electronics).
  3. Even for special conservative ports, only output and input can be connected. Input - Input or output - output will not connect.
  4. Since conservative ports are confined within their own library. Only physical signal ports can be connected with the converters mentioned in point 1.
  5. You can also use physical signal ports (marked with triangle) to connect blocks from different simscape libraries. For example, rotational motion sensor for simscape mechanical, and controlled voltage source from simscape electrical can be connected through this. Both these blocks have physical ports. These are use to transfer signals from one library to the other.
  6. You can look at the documentation of the block. Mostly it mentions the type of each port and how it can be connected.
Related Question