Cant create a variable capacitor in simulink
5 views (last 30 days)
Show older comments
Saurabh Sakpal
on 2 Feb 2015
Edited: Sebastian Castro
on 3 Feb 2015
Hey,
I am trying to create a model of the cardiovascular system and in this i am using a circuit to model the circulatory system. I have to create a capacitor which is the 'heart' and the circuit it is attached to eg. resistors are the blood vessels etc.
I have to create a variable capacitor so that stimulus depends on time and is not constant.
Now the problem i am having is when i attach the variable capacitor to the circuit and measure the voltage which is the 'flow' i keep getting 0. like almost as if there is no reading. Whats wrong with my circuit.
I have attached my circuit below. Please any help would be appreciated thanks.
Accepted Answer
Sebastian Castro
on 2 Feb 2015
Hi Saurabh,
What version of Simulink are you using? Starting with R2014a, the initial conditions specification changed in Simscape..
Things I would check (assuming you're in R2014a and onwards):
- Since you don't have a power source, you need non-zero initial voltages on at least one of the capacitors. Look at the individual initial conditions of each block. If you want to explore the initial conditions, you could also use the Variable Viewer.
- Double-click the Solver Configuration block and make sure the "Start simulation from steady-state" box is unchecked.
- Try zooming in the time scale (X-axis). Your simulation runs for 10 seconds, but capacitors generally charge and discharge much more quickly.
By the way, you only need the "powergui" block if you have SimPowerSystems blocks in your model. If the screenshot you showed is your entire model, then the blocks are strictly Simscape/SimElectronics, so you can get rid of it unless you're using some of its analysis tools.
- Sebastian
3 Comments
More Answers (2)
Saurabh Sakpal
on 3 Feb 2015
Edited: Saurabh Sakpal
on 3 Feb 2015
1 Comment
Sebastian Castro
on 3 Feb 2015
Edited: Sebastian Castro
on 3 Feb 2015
Saurabh,
For the algebraic loop situation, you are seeing this because you're taking an output from the Simscape network and feeding it back as an input without any delays/other ways to break the loop.
If you're building a custom capacitor (i.e., the equations are part of your physical system), I would make the following recommendations:
- Instead of using Simulink blocks, try using the Simscape > Foundation Library > Physical Systems library. If you build the same equations using these blocks, you will not get algebraic loops.
- Use the Simscape Language to build your own custom Simscape block. You can even start with the equations from the built-in Simscape Capacitor block by double-clicking it and selecting "View source code", then making modifications from there.
Sort of unrelated, but the Simulink derivative block is typically not recommended. If possible, try build your equations "backwards" and use an Integrator block instead. Integrator blocks actually hold a state in memory and play nicer with the Simulink solver because of this.
For the second issue, it's not too big a deal. Component equations for "symmetric" components like springs, inductors, resistors, etc. will not affect the behavior of your system. All this means is that, when you flip the block around, the measured current/voltage values will be negative of what they were before. It's just sign convention.
If you flip something like a diode now... that's when you start changing the behavior of the overall system.
- Sebastian
See Also
Categories
Find more on Nonlinear Operators 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!