aboutsummaryrefslogtreecommitdiff
path: root/share/library/Misc/voltage-source.lua
blob: 746030588c03432764e70d097672d5fb0cb48dec (plain)
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
-- Symbol names
local names_ac =
{
	en = "AC voltage source",
	cs = "Střídavý zdroj napětí"
}

local names_dc =
{
	en = "DC voltage source",
	cs = "Stejnosměrný zdroj napětí"
}

-- Render area in base units (X1, Y1, X2, Y2)
local area = {-3, -2, 3, 2}

-- Terminal points
local terminals = {{-3, 0}, {3, 0}}

-- Rendering
local render = function (cr)
	-- The circle
	cr.arc (0, 0, 2, 0, math.pi * 2)

	-- The terminals
	cr.move_to (-3, 0)
	cr.line_to (-2, 0)

	cr.move_to (2, 0)
	cr.line_to (3, 0)

	cr.stroke ()
end

local render_ac = function (cr)
	render (cr)

	-- The AC symbol
	cr.move_to (-1, 0.25)
	cr.curve_to (-0.4, -1.5, 0.4, 1.5, 1, -0.25)

	cr.stroke ()
end

local render_dc = function (cr)
	render (cr)

	-- The DC symbol
	cr.move_to (-1, -0.25)
	cr.line_to (1, -0.25)

	cr.move_to (-1, 0.25)
	cr.line_to (-0.2, 0.25)

	cr.move_to (0.2, 0.25)
	cr.line_to (1, 0.25)

	-- Polarity sign
	cr.move_to (2.6, -0.6)
	cr.line_to (2.6, -1.4)

	cr.move_to (2.2, -1)
	cr.line_to (3.0, -1)

	cr.stroke ()
end

-- Register the symbol
logdiag.register ("ACSource", names_ac, area, terminals, render_ac)
logdiag.register ("DCSource", names_dc, area, terminals, render_dc)