Adsorption process in Simulink

6 views (last 30 days)
How to create a switch command between adsorption and desorption in Simulink?
  2 Comments
Rahul
Rahul on 4 Oct 2024
Hey @Ababacar Thiam, can you share your Simulink Model, or describe your use case, that'll help in better understanding the isssue.
Ababacar Thiam
Ababacar Thiam on 4 Oct 2024
Thanks for your answer Rahul. We first simulated adsorption in one block. Then we simulated desorption in another block. We seek to regroup the two blocks so as to have the desorption-adsorption sequence.

Sign in to comment.

Accepted Answer

Ashok
Ashok on 8 Oct 2024
To switch between the two subsystems (adsorption and desorption) based on a control signal, the ‘Switch block can be used. The control signal can be generated in a couple of ways:
  1. Using ‘Relational Operator’ and ‘Logical Operator’ blocks if the switching logic is simple.
  2. For more complex switching logics, a ‘Stateflow’ chart can be used.
You can learn more about the Switch block in the following documentation page.
Here’s an example for the Switch’ block that outputs the absolute value of a biased sine wave. The below model switches between ‘subsystem1’ and ‘subsystem2’ depending on the value of ‘controlSignal.
The output seen in the scope would be as follows:
You can refer to the attached model for further assistance. To switch between several subsystems, the ‘Multiport Switch’ block can be used. Feel free to check out the following documentation page.
I believe this will assist you!
  1 Comment
Ababacar Thiam
Ababacar Thiam on 8 Oct 2024
Thanks a lot Ashok, I will try to the simulation with your explications

Sign in to comment.

More Answers (0)

Categories

Find more on Simulink Functions in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!