- Index
- » Users
- » sat_2251
- » Profile
Posts
Posts
Thank you so much for quick reply.
Please let me know "Extra equation" sample , if it is possible...
I descripted the model what I defined the connect() by myself as below.
This is very simple sample.
When I simulate this model, I get some errors from OM simulator.
Where should I modify this model ?
----------------------------------------------------------
model aaa
Modelica.Electrical.Analog.Basic.Resistor resistor1(R = 10);
Modelica.Electrical.Analog.Basic.Ground ground1;
Modelica.Electrical.Analog.Sources.SineVoltage sineVoltage1;
equation
//<connection definition 1>
sineVoltage1.n.v = ground1.p.v;
sineVoltage1.p.v = resistor1.p.v;
resistor1.n.v = ground1.p.v;
resistor1.p.i + sineVoltage1.p.i = 0;
resistor1.n.i + sineVoltage1.n.i + ground1.p.i = 0;
end aaa;
----------------------------------------------------------
If I change the equations as below, I have no errors.
equation
//<connection definition 2>
connect( sineVoltage1.p, resistor1.p );
connect( resistor1.n, ground1.p );
connect( sineVoltage1.n, ground1.p );
I think <connection definition 1> and <connection definition 2> are same....
My understanding is wrong ?
- Index
- » Users
- » sat_2251
- » Profile