1 | model SMEE_ShortCircuit2Ground
|
---|
2 | "Two phase short-circuit of electrical excited synchronous machine"
|
---|
3 | extends HanserModelica.SynchronousMachines.Templates.SMEE_ShortCircuit;
|
---|
4 | extends Modelica.Icons.Example;
|
---|
5 | equation
|
---|
6 | connect(pin1.pin_p, pin2.pin_p) annotation (
|
---|
7 | Line(points = {{-42, 70}, {-52, 70}, {-52, 50}, {-42, 50}}, color = {0, 0, 255}));
|
---|
8 | connect(ground.p, pin2.pin_p) annotation (
|
---|
9 | Line(points = {{-60, 50}, {-50, 50}, {-50, 50}, {-42, 50}, {-42, 50}}, color = {0, 0, 255}));
|
---|
10 | annotation (
|
---|
11 | experiment(StopTime = 0.5, Interval = 0.0001, Tolerance = 1e-08),
|
---|
12 | Documentation(info = "<html>
|
---|
13 |
|
---|
14 | <h4>Description</h4>
|
---|
15 |
|
---|
16 | <p>
|
---|
17 | This example investigates a two-phase short-circuit of an electrical excited synchronous machine.
|
---|
18 | The machine is operated at nominal speed. The short circuit is applied starting from a no load condition</p>
|
---|
19 | </p>
|
---|
20 |
|
---|
21 | <h4>Plot the following variable(s)</h4>
|
---|
22 |
|
---|
23 | <ul>
|
---|
24 | <li><code>smee.is[1]</code>, <code>smee.is[2]</code>, <code>smee.is[3]</code>: stator currents of phase 1, 2 and 3</li>
|
---|
25 | <li><code>smee.ir[1]</code>, <code>smee.ir[2]</code>: d- and q-axis rotor current of damper cage</li>
|
---|
26 | <li><code>smee.ie</code>: excitation current</li>
|
---|
27 | </ul>
|
---|
28 | </html>"),
|
---|
29 | uses(HanserModelica(version="1.1.0"), Modelica(version="3.2.3")));
|
---|
30 | end SMEE_ShortCircuit2Ground;
|
---|