Inductor

model Inductor "Single phase linear inductor"
    import Modelica.ComplexMath.j;

    extends Interfaces.OnePort;

    parameter Modelica.SIunits.Inductance L(start = 1) "Inductance";
equation
    v = j * omega * L * i;

    annotation (
        Icon(graphics = {
            Line(
                points = {
                    {60, 0}, 
                    {90, 0}},
                color = {85, 170, 255}), 
            Line(
                points = {
                    {-90, 0}, 
                    {-60, 0}},
                color = {85, 170, 255}), 
            Text(
                extent = {
                    {150, -50}, 
                    {-150, -80}},
                textString = "L=%L"), 
            Line(
                points = {
                    {-60, 0}, 
                    {-59, 6}, 
                    {-52, 14}, 
                    {-38, 14}, 
                    {-31, 6}, 
                    {-30, 0}},
                color = {0, 128, 255},
                smooth = Smooth.Bezier), 
            Line(
                points = {
                    {-30, 0}, 
                    {-29, 6}, 
                    {-22, 14}, 
                    {-8, 14}, 
                    {-1, 6}, 
                    {0, 0}},
                color = {0, 128, 255},
                smooth = Smooth.Bezier), 
            Line(
                points = {
                    {0, 0}, 
                    {1, 6}, 
                    {8, 14}, 
                    {22, 14}, 
                    {29, 6}, 
                    {30, 0}},
                color = {0, 128, 255},
                smooth = Smooth.Bezier), 
            Line(
                points = {
                    {30, 0}, 
                    {31, 6}, 
                    {38, 14}, 
                    {52, 14}, 
                    {59, 6}, 
                    {60, 0}},
                color = {0, 128, 255},
                smooth = Smooth.Bezier), 
            Text(
                extent = {
                    {-150, 90}, 
                    {150, 50}},
                textString = "%name",
                lineColor = {0, 0, 255})}),
        Documentation(info = "<html>\n\n<p>\nThe linear inductor connects the voltage <code><u>v</u></code> with the\ncurrent <code><u>i</u></code> by  <code><u>v</u> = j*&omega;*L*<u>i</u></code>.\nThe Inductance <code>L</code> is allowed to be positive, zero, or negative.\n</p>\n\n<h4>See also</h4>\n<p>\n<a href=\"modelica://Modelica.Electrical.QuasiStationary.SinglePhase.Basic.Resistor\">Resistor</a>,\n<a href=\"modelica://Modelica.Electrical.QuasiStationary.SinglePhase.Basic.Conductor\">Conductor</a>,\n<a href=\"modelica://Modelica.Electrical.QuasiStationary.SinglePhase.Basic.Capacitor\">Capacitor</a>,\n<a href=\"modelica://Modelica.Electrical.QuasiStationary.SinglePhase.Basic.Impedance\">Impedance</a>,\n<a href=\"modelica://Modelica.Electrical.QuasiStationary.SinglePhase.Basic.Admittance\">Admittance</a>,\n<a href=\"modelica://Modelica.Electrical.QuasiStationary.SinglePhase.Basic.VariableResistor\">Variable resistor</a>,\n<a href=\"modelica://Modelica.Electrical.QuasiStationary.SinglePhase.Basic.VariableConductor\">Variable conductor</a>,\n<a href=\"modelica://Modelica.Electrical.QuasiStationary.SinglePhase.Basic.VariableCapacitor\">Variable capacitor</a>,\n<a href=\"modelica://Modelica.Electrical.QuasiStationary.SinglePhase.Basic.VariableInductor\">Variable inductor</a>,\n<a href=\"modelica://Modelica.Electrical.QuasiStationary.SinglePhase.Basic.VariableImpedance\">Variable impedance</a>,\n<a href=\"modelica://Modelica.Electrical.QuasiStationary.SinglePhase.Basic.VariableAdmittance\">Variable admittance</a>\n</p>\n</html>"));
end Inductor;