Update the symbol library.
* Add bipolar, IGFET and JFET transistors. * Add more variants to some symbols. * Add a symbol for a simple terminal. * Avoid unneccessary stroke() calls. * Fix comments.
This commit is contained in:
73
share/library/Active/bipolar.lua
Normal file
73
share/library/Active/bipolar.lua
Normal file
@@ -0,0 +1,73 @@
|
||||
-- Symbol names
|
||||
local names_npn =
|
||||
{
|
||||
en = "NPN transistor",
|
||||
cs = "Tranzistor NPN"
|
||||
}
|
||||
|
||||
local names_pnp =
|
||||
{
|
||||
en = "PNP transistor",
|
||||
cs = "Tranzistor PNP"
|
||||
}
|
||||
|
||||
-- Render area in base units (X1, Y1, X2, Y2)
|
||||
local area = {-2, -2, 2, 2}
|
||||
|
||||
-- Terminal points
|
||||
local terminals = {{-2, 0}, {2, 2}, {2, -2}}
|
||||
|
||||
-- Rendering
|
||||
local render = function (cr)
|
||||
-- The terminals
|
||||
cr.move_to (-2, 0)
|
||||
cr.line_to (0, 0)
|
||||
|
||||
cr.move_to (0, 0.5)
|
||||
cr.line_to (2, 2)
|
||||
|
||||
cr.move_to (0, -0.5)
|
||||
cr.line_to (2, -2)
|
||||
|
||||
-- The ohmic connection
|
||||
cr.move_to (0, -1)
|
||||
cr.line_to (0, 1)
|
||||
|
||||
cr.stroke ()
|
||||
end
|
||||
|
||||
local render_npn = function (cr)
|
||||
render (cr)
|
||||
|
||||
cr.save ()
|
||||
cr.translate (0, -0.5)
|
||||
cr.rotate (math.atan2 (-2, -1.5))
|
||||
|
||||
cr.move_to (-0.4, 0.8)
|
||||
cr.line_to (0, 1.4)
|
||||
cr.line_to (0.4, 0.8)
|
||||
|
||||
cr.stroke ()
|
||||
cr.restore ()
|
||||
end
|
||||
|
||||
local render_pnp = function (cr)
|
||||
render (cr)
|
||||
|
||||
cr.save ()
|
||||
cr.translate (2, -2)
|
||||
cr.rotate (math.atan2 (2, 1.5))
|
||||
|
||||
cr.move_to (-0.4, 1.3)
|
||||
cr.line_to (0, 1.9)
|
||||
cr.line_to (0.4, 1.3)
|
||||
|
||||
cr.stroke ()
|
||||
cr.restore ()
|
||||
end
|
||||
|
||||
-- Register the symbols
|
||||
logdiag.register ("NPN", names_npn, area, terminals, render_npn)
|
||||
logdiag.register ("PNP", names_pnp, area, terminals, render_pnp)
|
||||
|
||||
|
||||
5
share/library/Active/category.json
Normal file
5
share/library/Active/category.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"en": "Active",
|
||||
"cs": "Aktivní"
|
||||
}
|
||||
|
||||
53
share/library/Active/icon.svg
Normal file
53
share/library/Active/icon.svg
Normal file
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
version="1.1"
|
||||
width="128"
|
||||
height="128"
|
||||
id="svg2">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
transform="translate(-3,-1)"
|
||||
id="g3774"
|
||||
style="fill:none;stroke:#000000;stroke-width:4;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none">
|
||||
<path
|
||||
d="m 20,63 45,0"
|
||||
id="path3764"
|
||||
style="fill:none;stroke:#000000;stroke-width:4;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 65,38 0,50"
|
||||
id="path3766"
|
||||
style="fill:none;stroke:#000000;stroke-width:4;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
d="M 65,53 110,23"
|
||||
id="path3768"
|
||||
style="fill:none;stroke:#000000;stroke-width:4;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 65,73 45,30"
|
||||
id="path3770"
|
||||
style="fill:none;stroke:#000000;stroke-width:4;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 82,31 15,0 -5,15"
|
||||
id="path3772"
|
||||
style="fill:none;stroke:#000000;stroke-width:4;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
73
share/library/Active/igfet.lua
Normal file
73
share/library/Active/igfet.lua
Normal file
@@ -0,0 +1,73 @@
|
||||
-- Symbol names
|
||||
local names_igfet_n =
|
||||
{
|
||||
en = "N-channel IGFET transistor",
|
||||
cs = "Tranzistor IGFET s kanálem N"
|
||||
}
|
||||
|
||||
local names_igfet_p =
|
||||
{
|
||||
en = "P-channel IGFET transistor",
|
||||
cs = "Tranzistor IGFET s kanálem P"
|
||||
}
|
||||
|
||||
-- Render area in base units (X1, Y1, X2, Y2)
|
||||
local area = {-2, -1.5, 2, 1.5}
|
||||
|
||||
-- Terminal points
|
||||
local terminals = {{-2, 1}, {2, 1}, {2, 0}, {2, -1}}
|
||||
|
||||
-- Rendering
|
||||
local render = function (cr)
|
||||
-- The terminals
|
||||
cr.move_to (-2, 1)
|
||||
cr.line_to (-0.3, 1)
|
||||
cr.line_to (-0.3, -1)
|
||||
|
||||
cr.move_to (0, 1)
|
||||
cr.line_to (2, 1)
|
||||
|
||||
cr.move_to (0, 0)
|
||||
cr.line_to (2, 0)
|
||||
|
||||
cr.move_to (0, -1)
|
||||
cr.line_to (2, -1)
|
||||
|
||||
-- Source, gate, drain
|
||||
cr.move_to (0, -1.5)
|
||||
cr.line_to (0, -0.5)
|
||||
|
||||
cr.move_to (0, -0.3)
|
||||
cr.line_to (0, 0.3)
|
||||
|
||||
cr.move_to (0, 0.5)
|
||||
cr.line_to (0, 1.5)
|
||||
|
||||
cr.stroke ()
|
||||
end
|
||||
|
||||
local render_igfet_n = function (cr)
|
||||
render (cr)
|
||||
|
||||
cr.move_to (0.9, -0.4)
|
||||
cr.line_to (0.4, 0)
|
||||
cr.line_to (0.9, 0.4)
|
||||
|
||||
cr.stroke ()
|
||||
end
|
||||
|
||||
local render_igfet_p = function (cr)
|
||||
render (cr)
|
||||
|
||||
cr.move_to (0.4, -0.4)
|
||||
cr.line_to (0.9, 0)
|
||||
cr.line_to (0.4, 0.4)
|
||||
|
||||
cr.stroke ()
|
||||
end
|
||||
|
||||
-- Register the symbols
|
||||
logdiag.register ("IGFET-N", names_igfet_n, area, terminals, render_igfet_n)
|
||||
logdiag.register ("IGFET-P", names_igfet_p, area, terminals, render_igfet_p)
|
||||
|
||||
|
||||
63
share/library/Active/jfet.lua
Normal file
63
share/library/Active/jfet.lua
Normal file
@@ -0,0 +1,63 @@
|
||||
-- Symbol names
|
||||
local names_jfet_n =
|
||||
{
|
||||
en = "N-channel JFET transistor",
|
||||
cs = "Tranzistor JFET s kanálem N"
|
||||
}
|
||||
|
||||
local names_jfet_p =
|
||||
{
|
||||
en = "P-channel JFET transistor",
|
||||
cs = "Tranzistor JFET s kanálem P"
|
||||
}
|
||||
|
||||
-- Render area in base units (X1, Y1, X2, Y2)
|
||||
local area = {-2, -1.5, 2, 1.5}
|
||||
|
||||
-- Terminal points
|
||||
local terminals = {{-2, 1}, {2, 1}, {2, -1}}
|
||||
|
||||
-- Rendering
|
||||
local render = function (cr)
|
||||
-- The terminals
|
||||
cr.move_to (-2, 1)
|
||||
cr.line_to (0, 1)
|
||||
|
||||
cr.move_to (0, 1)
|
||||
cr.line_to (2, 1)
|
||||
|
||||
cr.move_to (0, -1)
|
||||
cr.line_to (2, -1)
|
||||
|
||||
-- The ohmic connection
|
||||
cr.move_to (0, -1.5)
|
||||
cr.line_to (0, 1.5)
|
||||
|
||||
cr.stroke ()
|
||||
end
|
||||
|
||||
local render_jfet_n = function (cr)
|
||||
render (cr)
|
||||
|
||||
cr.move_to (-1, 0.6)
|
||||
cr.line_to (-0.5, 1)
|
||||
cr.line_to (-1, 1.4)
|
||||
|
||||
cr.stroke ()
|
||||
end
|
||||
|
||||
local render_jfet_p = function (cr)
|
||||
render (cr)
|
||||
|
||||
cr.move_to (-0.4, 0.6)
|
||||
cr.line_to (-1, 1)
|
||||
cr.line_to (-0.4, 1.4)
|
||||
|
||||
cr.stroke ()
|
||||
end
|
||||
|
||||
-- Register the symbols
|
||||
logdiag.register ("JFET-N", names_jfet_n, area, terminals, render_jfet_n)
|
||||
logdiag.register ("JFET-P", names_jfet_p, area, terminals, render_jfet_p)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user