[Simscape] Are there ways to build segmented/discretised models with n as a block/mask parameter

1 vue (au cours des 30 derniers jours)
Hello everyone, we are working a lot with Simscape's thermal liquid domain and pipe models. Often, we discretise pipes in 5 to 100 segements (some kind of mixing pot model), but have to manually build up all variants.
We'd appreciate an otion, to build up a model and repeat certain parts via mask parameters. E.g. take standard pipe, enter length 10 m and n=5, another one shall be 80 m an n=20 --> similar to Modelica world.
We'd like to avoid building custom domains or coding in general, since most of our library components are entirely built from foundation library.
  2 commentaires
Andreas
Andreas le 13 Oct 2015
Have a look here: pipe base class in modelica
The modelica domain allows discretisation in multiple finite volume elements.
Even Simscape can use this, even though in other domains (simhydraulics > segemented pipeline): Segmented pipelines in simhydraulics
How can you achieve this in thermal liquid?

Connectez-vous pour commenter.

Réponse acceptée

Sebastian Castro
Sebastian Castro le 13 Oct 2015
Modifié(e) : Sebastian Castro le 25 Déc 2015
I've personally done this with the new Two-Phase Fluid domain in Simscape, which is basically the same thing.
To make a long story short, you have to program it yourself. The general workflow is:
  1. Create a masked subsystem where the number of segments N is a parameter.
  2. Whenever N changes, you need to run a script in the mask's initialization commands that modifies the inside of the block.
  3. You should first decide which blocks comprise your "segment". For example, the simplest case would be to connect Pipe (TL) blocks in series.
  4. In the MATLAB script, you'd have to come up with a way to connect N number of blocks together. To do this, functions like add_block, add_line, and get_param / set_param will be crucial.
I know you said you didn't want any coding, but that would be the way to go in Simscape. Happy to help if you want to further pursue this approach.
- Sebastian
  1 commentaire
Andreas
Andreas le 15 Oct 2015
Hi Sebastian,
thanks for your answer - I thought it would get that complicated.
At first, we will keep our current library (multiple versions with different discretisation numbers, switching blocks via "configurable subsystem"), but maybe we'll go to your workflow in future.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Foundation and Custom Domains dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by