-
Notifications
You must be signed in to change notification settings - Fork 190
Expand file tree
/
Copy pathpackage.mo
More file actions
89 lines (88 loc) · 3.71 KB
/
package.mo
File metadata and controls
89 lines (88 loc) · 3.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
within Modelica.Electrical.Machines;
package BasicMachines "Basic machine models"
extends Modelica.Icons.Package;
annotation (Documentation(info="<html>
This package contains components for modeling electrical machines, specially three-phase induction machines, based on space phasor theory:
<ul>
<li>package InductionMachines: models of three-phase induction machines</li>
<li>package SynchronousMachines: models of three-phase synchronous machines</li>
<li>package DCMachines: models of DC machines with different excitation</li>
<li>package Transformers: Three-phase transformers (see detailed documentation in subpackage)</li>
<li>package Components: components for modeling machines and transformers</li>
</ul>
The induction machine models use package SpacePhasors.
</html>",
revisions="<html>
<dl>
<dt><strong>Main Authors:</strong></dt>
<dd>
<a href=\"https://www.haumer.at/\">Anton Haumer</a><br>
Technical Consulting & Electrical Engineering<br>
D-93049 Regensburg<br>Germany<br>
email: <a href=\"mailto:a.haumer@haumer.at\">a.haumer@haumer.at</a>
</dd>
</dl>
<ul>
<li> v1.00 2004/09/16 Anton Haumer</li>
<li> v1.01 2004/09/18 Anton Haumer<br>
moved common equations from machine models to PartialMachine</li>
<li> v1.02 2004/09/19 Anton Haumer<br>
new package structure for machine types<br>
added DCMachine models</li>
<li> v1.03 2004/09/24 Anton Haumer<br>
added DC machine with series excitation</li>
<li> v1.1 2004/10/01 Anton Haumer<br>
changed naming and structure<br>
issued to Modelica Standard Library 2.1</li>
<li> v1.2 2004/10/27 Anton Haumer<br>
fixed a bug with support (formerly bearing)</li>
<li> v1.3.2 2004/11/10 Anton Haumer<br>
ReluctanceRotor moved to SynchronousMachines</li>
<li> v1.4 2004/11/11 Anton Haumer<br>
removed mechanical flange support<br>
to ease the implementation of a 3D-frame in a future release</li>
<li> v1.53 2005/10/14 Anton Haumer<br>
introduced unsymmetrical DamperCage for Synchronous Machines</li>
<li> v1.6.2 2005/10/23 Anton Haumer<br>
selectable DamperCage for Synchronous Machines</li>
<li> v1.6.3 2005/11/25 Anton Haumer<br>
easier parametrization of InductionMachines.IM_SlipRing model</li>
<li> v1.7.1 2006/02/06 Anton Haumer<br>
changed some naming of synchronous machines, not affecting existing models</li>
<li> v2.1.3 2010/02/10 Anton Haumer<br>
prepared conditionalHeatPort of SquirrelCage and DamperCage</li>
<li> v2.2.0 2011/02/10 Anton Haumer<br>
conditional ThermalPort for all machines</li>
</ul>
</html>"),
Icon(coordinateSystem(extent={{-100,-100},{100,100}}), graphics={
Rectangle(
origin={2.835,10},
fillColor={0,128,255},
fillPattern=FillPattern.HorizontalCylinder,
extent={{-60,-60},{60,60}},
pattern=LinePattern.None),
Rectangle(
origin={2.835,10},
fillColor={128,128,128},
fillPattern=FillPattern.HorizontalCylinder,
extent={{-80,-60},{-60,60}},
pattern=LinePattern.None),
Rectangle(
origin={2.835,10},
fillColor={95,95,95},
fillPattern=FillPattern.HorizontalCylinder,
extent={{60,-10},{80,10}},
pattern=LinePattern.None),
Rectangle(
origin={2.835,10},
lineColor={95,95,95},
fillColor={95,95,95},
fillPattern=FillPattern.Solid,
extent={{-60,50},{20,70}}),
Polygon(
origin={2.835,10},
fillPattern=FillPattern.Solid,
points={{-70,-90},{-60,-90},{-30,-20},{20,-20},{50,-90},{60,-90},{
60,-100},{-70,-100},{-70,-90}})}));
end BasicMachines;