- Index
- » Programming
- » Modelica Language
- » Assigning string variable from an...
Assigning string variable from an option list
Assigning string variable from an option list
Hello!
I am new on Modelica programming. I want to know if there is possible to assign a value to a string variable from a list. I am programming a thermal model to see the effect/influence of the fluid on the phenomena. In order to calculate thermo-physical properties, I would like to choose the fluid from a list before the simulation starts. I don't know if it is possible, I want avoiding to create a program for each fluid, but only one code for all of them. Please, let me know your knowledge about the topic.
Thank you in advanced for your attention. Best regards.
Re: Assigning string variable from an option list
Hello
This is Mark,you can use the annotation to solve the problem. For example:
parameter String Mode="Ave" annotation(choices(choice="Min",choice="Ave",choice="Max"));
This code can help you select "Min","Ave","Max" on the model setting interface.
I hope this helps.
- Index
- » Programming
- » Modelica Language
- » Assigning string variable from an...