Modelling language for multi-domain physical and control systems.

learn more… | top users | synonyms

0
votes
1answer
35 views

How to determine value from previous time step during simulation in Modelica?

How can I determine value from previous time step during simulation in Modelica? I have equation Q=m*c*(Ts2-Ts1-Tr) I need to extract value of Ts2 and Ts1 from it. Ts2 - is the value from time ...
0
votes
1answer
37 views

Is there any method that support calling Modelica operator from Java

Is there any method that support calling Modelica operator from java ? If I want to use the Modelica Operator like der(), pre() and so on, call them from java. Is there any technology I can use?
0
votes
1answer
44 views

Modelica special operators source code

As the example below: model HelloWorld "A Simple Model" Real x(start = 1); equation **der(x) = -x;** annotation (uses(Modelica(version="3.2"))); end HelloWorld; I planned to write some code ...
1
vote
1answer
40 views

integration of function in modelica

I would like to perform integration of function in modelica, but I don't know how to do it. For example integral of x dx with upper limit 5 and lover limit 2? ∫x dx=x^2/2 How to write the proper ...
-2
votes
0answers
44 views

how to parse a language ( Modelica ) , understand its semantics and transform that into Ontologies(.owl)? [closed]

Basically in my project, I need to design a tool that can read a modellica code file and generate ontologies. I designed the tool in Java swing, but now what? I'm a beginner in programming; could ...
1
vote
2answers
67 views

Modelica Frequency/Time Domain combined equations

Im creating a model of a rather complex electric circuit in modelica. I want to find out how to include "s" equations (I mean frequency domain equations) in the model. Of course I may transform the ...
0
votes
1answer
61 views

Modelica - Change default Medium in extending model (Dymola)

I would like to change the default Medium in an extending model such that the new value is shown in the "documentation" tab. For example: partial model A replaceable package Medium = ...
1
vote
2answers
70 views

find all zeros of a polynomal function

Im working with Dymola Version 2013. I try to solve a simple mathematical problem, like: f= x^2 -4 ; y=1; f=y; f and x are defined as Real. The solution is 2.36. but I need to calculate with both ...
1
vote
3answers
61 views

Designing a relay

I am trying to build a relay but I always get an error that doesn't make any sense to me. The error says that a ground object is missing or a component is not connected, but I can't find anything ...
0
votes
1answer
45 views

Modelica SemiLinear()

Anyone who knows well Modelica Language, specifically thermo-fluid toolbox? Often there is a semiLinear() function, used to calculate the flow of enthalpy, as it depends flow direction. Anyone who ...
1
vote
3answers
71 views

How to use the value of the variable in the previous interval as an input to the equation…?

Is it possible to use the previous value of the time varying variable for eg: Suppose I have pipe whose inlet temperature is 298K with a specified uniform mass flow(m_flow), now suppose i am heating ...
1
vote
1answer
42 views

Plotting variables not showing up in OpenModelica

Today, installed OpenModelica in Ubuntu 12.10, and I ran one of the examples in simulation. It worked fine the first time. Then I closed out the Plotting Variables window in the OpenModelica Editor, ...
1
vote
2answers
78 views

How can I create a custom package in Dymola/Modelica?

I have a custom package that I find myself reusing repeatedly in Dymola models, and I'd like to put this package in a common directory that is automatically loaded whenever I start Dymola. My current ...
0
votes
2answers
70 views

How can I execute 2 models one by one in one simulation?

I was trying to execute 2 models one by one in a simulation via state chart. The pseudo-code follows. In model test, there are two blocks, stateA and stateB. At the beginning of the simulation, stateA ...
0
votes
1answer
40 views

Dymola flag equidistant time grid and store variables at events

Is there a flag/scripting way of specifying for a simulation : Store variable at events, same as Simulation Setup\Output\Store variables at events Equidistant time grid, same as Simulation ...
0
votes
2answers
50 views

Increment of Variable goes wrong

the variable is now starting with j = 1, but the increment is wrong. For t = 0.5 it should have the value of 2 and for t = 1, j = 3 and so on... You see the error on the following image class abc ...
-1
votes
1answer
150 views

How to extract values from algorithm section?

I'm working with parabolic PDE's mixed with algebraic equation plus all these equation are coupled. I used Euler Method (Dassl is too slow) and big tolerance(for fast simulation) and recive error ...
2
votes
2answers
95 views

Sample function doesn't work on Dymola

I try to compile the following code with Dymola: class abc import Modelica.SIunits; parameter SIunits.Time delta_t=0.5; constant Real a[:]={4,2,6,-1,3,5,7,4,-3,-6}; Real x; Integer ...
5
votes
1answer
144 views

Generate white noise in Modelica (SystemModeler)

I am trying to add measurement noise to a simulation. This is possible to do in for example Simulink but seems to be more difficult in Modelica and SystemModeler. Any ideas on how to do this?
3
votes
1answer
76 views

Modelica - Creating Icons

I want to create an icon for a model that combines two components from the Modelica standard library. These two components are Modelica.Blocks.Sources.Sine and ...
2
votes
2answers
57 views

conditional component decleration and a following if equation

I am trying to build a model that will have slightly different equations based on whether or not certain components exist (in my case, fluid ports). A code like the following will not work: ...
2
votes
1answer
290 views

Modelica for python/matlab/simulink/maple users? [closed]

I am trying to learn Modelica coming from a Python/MATLAB/Simulink/Maple background. Are there any resources for learning Modelica for people with experience in other languages/environments? When ...
3
votes
1answer
106 views

Modelica style guide

For many programming languages there are style guides available, e.g. this Matlab style guide or the style guides by Google. For Modelica I found the conventions described in the Users Guide, but is ...
3
votes
2answers
104 views

How to design a controller/ controllers for a MIMO thermo-hydraulic system modeled in Modelica/Dymola

I am currently developing a large and complex thermo-hydraulic systems in Modelica/Dymola environment using ThermoPower library by Prof. Francesco Casella. At present, I have completed building our ...
2
votes
1answer
269 views

Using coupled system of PDEs in modelica

Just few questions, i hope someone will find time to answer :). What if we have COUPLED model example: system of n indepedent variables X and n nonlinear partial differential equations ...
3
votes
2answers
194 views

Modelica - Modeling a slider element in OpenModelica

Rheological models are usually build using three (or four) basics elements, which are : The spring (existing in Modelica.Mechanics.Translational.Components for example). Its equation is f = c * ...
3
votes
1answer
104 views

Controlling events in a hybrid Modelica model

I am confused by the hybrid modelling paradigm in Modelica. On one hand, events are useful, on the other hand, they are to be avoided. Let me explain my case: I have a large model consisting of ...
1
vote
1answer
91 views

Confused by when clauses in algorithm section

model try Real x(start = 1); algorithm when x >= 7 then reinit(x, 5); end when; equation der(x) = 1 ; end try; The when statement should be triggered whenever the guard ...
1
vote
1answer
162 views

model a periodic time-varing real variable in OpenModelica

What I want to model is a periodic time-varing real variable, the following code can not be simulated. Does somebody have suggestion? class try discrete Real x(start = 1); algorithm when sample(0,4) ...
3
votes
1answer
143 views

the execution order of statements in algorithm section

model try discrete Integer x(start = 1); algorithm when time >= 3 then x:= x + 5; end when; x:= 5; end try; model try1 discrete Integer x(start = 1); algorithm x:= 5; when time >= 3 then ...
1
vote
1answer
178 views

Modelica conditional printing (for debugging)

In Modelica, is it possible to have an if-condition and a command in one line? (Of course it is possible to write it in three lines, but I would prefer it in one line.) Something like: Boolean ...
0
votes
1answer
121 views

Modelica - set the minimum (maximum) of a transmitted variable over several components in a line

The following construct generates an error saying that there are too many equations. model Model1 model myBlock input Modelica.Blocks.Interfaces.RealInput u(start=1e99); output ...
1
vote
2answers
285 views

how to use Partial derivative in modelica?

If i have to use a partial derivative in modelica, how can that be used. I am not sure if partial derivative can be solved in modelica but i would like to know, if it can be used then, how should it ...
1
vote
1answer
60 views

Modelica.Media: Using trace components

I am trying to get the hang of trace components and how to use them in the context of Modelica.Media and Modelica.Fluid. I am currently working on a multi-component media where a couple of the ...
1
vote
1answer
51 views

Handeling mass fractions in Modelica.Media: using reducedX or not?

I have a question regarding how to handle the mass fractions of a multicomponent medium that I'm working on. To be more specific, I'm wondering whether to choose a reduced-state model (as in reducedX ...
2
votes
2answers
172 views

how to derivate with respect to someother variable other than time?

I am just starting with modelica. I am aware that there is an inbuilt time derivative operator [der(expr)]. In case if i have to derivate with some other variable how can that be done ? for eg: if i ...
2
votes
1answer
237 views

beginner: is it safe to rely on modelica for my project?

Assuming I model a complete system correctly, according to the Modelica syntax, are the compilers 'mature' enough to handle it? I need to model a system with at least 15 connected components, each ...
1
vote
1answer
104 views

How to simulate only one of three sub-models in Dymola/Modelica

I'm new to Dymola and I have to implement a chemical reactor in Dymola. I modeled the behaviour of the reactor in 3 different models, because the reactor behaves different depending on a variable x. ...
1
vote
1answer
124 views

Modelica: use of der() in a custom class/model

I'm trying to learn Modelica and I have constructed a very simple model using the multibody library. the model consists of a world object and a body (mass) connected to to beams which are then ...
0
votes
1answer
139 views

Modelica - change only one parameter of a complexe type connector

having a complex connector, when propagating it, I want to modify only one variable of the set of variables, without having to explicitely write all the equality equations for the other variables. ...
0
votes
1answer
120 views

Modelica.Media: BaseProperties versus setState_XXX

The Modelica Standard Library comes with the Modelica.Media library which makes available thermodynamic properties of fluids. Quoting from the Modelica.Media documentation: Media models in ...
1
vote
2answers
262 views

Interfacing a modelica model and a Java one

I have a model developed with Dymola and I have to interface it with a model in Java. More precisely, at each time step, both models provides the other with inputs. So far, i've found that: - Dymola ...
2
votes
2answers
244 views

Modelica and CANBus (General, CANOpen, and/or J1939)

I have experience with Simulink and CANbus interfaces for both simulation and code generation... but I really like open source. For quite awhile Octave has qualified as a MATLAB replacement (at my ...
1
vote
1answer
290 views

How to learn modelica? [closed]

I'm completely new to Modelica and was wondering what is the best way to learn on my own? Also I will be using it with MapleSim 5 (or 6 when it will be available) so any information regarding that ...
2
votes
2answers
209 views

Modelica execution order

Just starting with Modelica and having trouble understanding how it works. In the below 'method' of the model, qInflow and qOutflow are used in the second line to evaluate der(h), but they have not ...
1
vote
2answers
192 views

Modeling closed hydraulic cycle in OpenModelica

I'd like to model a closed hydraulic cycle as one can find in the Modelica Standard Library/Fluid/Examples/HeatingSystem. With the heating system as well as with my (minimalistic) example I've got the ...
3
votes
1answer
111 views

Conditional type assignment possible for a parameter?

I'm trying to let a parameter be of a specific type depending on a condition to be met. But I'm not quite sure how to do this or if this is actually possible/legal in Modelica. In principle what I ...
1
vote
1answer
170 views

How to override default equations?

All the derived classes should inherit some default equations from their base class. When the default equation is not valid for a derived class then it should redeclare it. This minimalistic example ...
0
votes
1answer
170 views

Connection Restrictions on Input and Output Connectors

I would like to enforce that the user cannot connect an input to an input. I expected the code below to give a compile-time error but it gives no error. How can I fix this? Another issue is the ...
2
votes
2answers
136 views

connect to a slice of an array of connectors

I have an array of connectors, and I want to connect another, smaller array of similar connectors, to a slice of this connector array. Example with a an array of x connectors, b an array of y ...

1 2