efind
electronic component selection utility
Loading...
Searching...
No Matches
examples.py
Go to the documentation of this file.
1from efind import (
2 Solver, Output, Capacitor, Resistor, ComponentValue, fmt_eng,
3 E12, E24, E96,
4)
5
6
7def opamp():
8 # https://electronics.stackexchange.com/a/562046/10008
9 # Op-amp to scale 4.5-6.5V -> 3-10V
10
11 Vref = Vcc = 12
12
13 def Vo(Vi: float, R1: float, R3: float, R4: float) -> float:
14 I3 = (Vref - Vi) / R3
15 I4 = Vi / R4
16 I1 = I3 - I4
17 V1 = I1 * R1
18 return Vi - V1
19
20 def Vol(R1: float, R3: float, R4: float) -> float:
21 return Vo(4.5, R1, R3, R4)
22 def Voh(R1: float, R3: float, R4: float) -> float:
23 return Vo(6.5, R1, R3, R4)
24
25 svout = Solver(
26 components=(
28 suffix='1', series=E96, minimum=50e3, maximum=500e3,
29 ),
31 suffix='3', series=E96, calculate=lambda R1: R1*16/17,
32 ),
34 suffix='4', series=E96, calculate=lambda R1, R3: R1*16/23,
35 ),
36 ),
37 outputs=(
38 Output('Vol', unit='V', expected=3, calculate=Vol),
39 Output('Voh', unit='V', expected=10, calculate=Voh),
40 ),
41 threshold=1e-2,
42 )
43
44 svout.solve()
45 svout.print()
46
47
48def opamp2():
49 # https://electronics.stackexchange.com/questions/564165
50 # Op-amp to scale 3.4-4.1V -> 1-5V
51
52 Vref = 4.096 # or maybe 12V
53 Vi1, Vo1 = 3.4, 1
54 Vi2, Vo2 = 4.1, 5
55 b = (
56 ((Vref - Vi1)*(Vi2 - Vo2) - (Vref - Vi2)*(Vi1 - Vo1)) /
57 ((Vref - Vi2)*Vi1 - (Vref - Vi1)*Vi2)
58 )
59 a = (Vi1*(b + 1) - Vo1)/(Vref - Vi1)
60
61 def Vo(Vi: float, R3: float, R2: float, R1: float) -> float:
62 I1 = (Vref - Vi)/R1
63 I2 = Vi/R2
64 I3 = I1 - I2
65 V3 = I3*R3
66 vo = Vi - V3
67 return vo
68
69 def Vol(R3: float, R2: float, R1: float) -> float:
70 return Vo(3.4, R3, R2, R1)
71
72 def Voh(R3: float, R2: float, R1: float) -> float:
73 return Vo(4.1, R3, R2, R1)
74
75 svout = Solver(
76 components=(
78 suffix='3', series=E96, minimum=50e3, maximum=500e3,
79 ),
81 suffix='2', series=E96, calculate=lambda R3: R3/b,
82 ),
84 suffix='1', series=E96, calculate=lambda R3, R2: R3/a,
85 ),
86 ),
87 outputs=(
88 Output('Vol', unit='V', expected=1, calculate=Vol),
89 Output('Voh', unit='V', expected=5, calculate=Voh),
90 ),
91 threshold=1e-2,
92 )
93
94 svout.solve()
95 svout.print()
96
97
98def opamp3():
99 # https://electronics.stackexchange.com/questions/573296
100 # Op-amp level shifter, 0-3.3V -> 0 - -7V with hysteresis
101 # Account for common-mode-friendly input symmetric within Vss
102 Vdd = 0 # or 3.3 or 5
103 Vss = -7
104 Vih = 3.3
105 Vi1, Vi2 = 0.2*Vih, 0.8*Vih
106 gain = -Vss/(Vi2 - Vi1)
107 offset = -gain*Vi2
108 amin = -Vih/Vss # to avoid clipping
109 a = R1R2 = 1 - Vih/Vss # to center the input wave on Vss/2
110 b = R4R3 = (gain + offset/Vss - 1) / (1 - Vdd/Vss)
111
112 def Vi(Vo: float, R1: float, R2: float, R3: float, R4: float, R5: float) -> float:
113 R3pR4 = 1 / (1/R3 + 1/R4)
114 R3pR5 = 1 / (1/R3 + 1/R5)
115 R4pR5 = 1 / (1/R4 + 1/R5)
116 Vp_Vdd = Vdd * R4pR5 / (R4pR5 + R3)
117 Vp_Vo = Vo * R3pR5 / (R3pR5 + R4)
118 Vp_Vss = Vss * R3pR4 / (R3pR4 + R5)
119 Vp = Vp_Vdd + Vp_Vo + Vp_Vss
120 I1 = (Vp - Vss)/R2
121 return Vp + I1*R1
122
123 def Vilact(*args: float) -> float:
124 return Vi(Vss, *args)
125
126 def Vihact(*args: float) -> float:
127 return Vi(0, *args)
128
129 def Vpmean(R1: float, R2: float, R3: float, R4: float, R5: float) -> float:
130 Vpmax = (Vih - Vss) / (1 + R1/R2) + Vss
131 Vpmin = (0 - Vss) / (1 + R1/R2) + Vss
132 return (Vpmax + Vpmin) / 2
133
134 def getR5(R1: float, R2: float, R3: float, R4: float) -> float:
135 c = R4R5 = gain * (1 + R1/R2) - R4/R3 - 1
136 return R4/R4R5
137
138 svout = Solver(
139 components=(
140 Resistor(
141 suffix='1', series=E24, minimum=10e3, maximum=100e3,
142 ),
143 Resistor(
144 suffix='2', series=E24, calculate=lambda R1: R1/R1R2,
145 ),
146 Resistor(
147 suffix='3', series=E24, minimum=10e3, maximum=100e3,
148 ),
149 Resistor(
150 suffix='4', series=E24, calculate=lambda R1, R2, R3: R3*R4R3,
151 ),
152 Resistor(
153 suffix='5', series=E24, calculate=getR5,
154 ),
155 ),
156 outputs=(
157 Output('Vil', unit='V', expected=Vi1, calculate=Vilact),
158 Output('Vih', unit='V', expected=Vi2, calculate=Vihact),
159 Output('Vpmean', unit='V', expected=Vss/2, calculate=Vpmean),
160 ),
161 threshold=1e-2,
162 )
163
164 svout.solve()
165 svout.print()
166
167
168def buck():
169 # https://electronics.stackexchange.com/a/562550/10008
170 # Convert down to 3V using the device described in
171 # https://fscdn.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd9e302efj-e.pdf
172 # page 30
173
174 Vout = 3.0
175 Vref = 0.8
176 R12max = 700e3
177 # 700e3 / R2 * Vref = Vout at limit
178 R2max = Vref / Vout * R12max
179
180 svout = Solver(
181 components=(
182 Resistor(suffix='2', series=E96, minimum=R2max/10, maximum=R2max),
183 Resistor(
184 suffix='1', series=E96, calculate=lambda R2: R2*(Vout/Vref - 1),
185 ),
186 ),
187 outputs=(
188 Output(
189 'Vout', unit='V', expected=Vout,
190 calculate=lambda R2, R1: Vref*(1 + R1/R2),
191 ),
192 ),
193 )
194 svout.solve()
195 svout.print()
196
197
199 # A real(ish) SMPS calculation for the AZ34063 converting 24V to 5V
200
201 # For the LRS-100-24
202 Vinnom = 24
203 loadreg = 5e-3
204 loadtol = 1e-2
205 Vinmin = Vinnom*(1 - loadreg - loadtol)
206
207 # Following AN920-D Step−Down Switching Regulator Design Example
208 # but targeting the AZ34063
209 Voutnom = 5
210 Vripple = 5e-3 * Voutnom
211 fmin = 38e3
212 Iout = 0.15
213 Ipksw = 2*Iout
214
215 # Vce(sat) for Darlington connection, typ. 1-1.3V from the table.
216 # Figure 6 shows closer to 875mV.
217 Vsat = 0.875
218 Vref = 1.25
219 Vdiff = Vinmin - Vsat - Voutnom
220
221 # For the SB140TA. Probably even less than this.
222 Vf = 0.3
223
224 tmax = 1 / fmin
225 ton_toff = (Voutnom + Vf)/Vdiff
226 toff = tmax/(1 + ton_toff)
227 ton = tmax - toff
228 assert ton/(ton + toff) < 6/7
229
230 Gt = 2.86e-5 # from AZ34063 figure 4
231 Ct = Gt*ton
232 Comin = Ipksw*tmax/8/Vripple
233 Lmin = Vdiff*ton/Ipksw
234
235 Ipkswnom = (Vinnom - Vsat - Voutnom)*ton/Lmin
236 Idivmin = 100e-6
237
238 Vsense = 0.3
239 Rsc = Vsense/Ipkswnom
240 R1max = Vref/Idivmin
241
242 def Vo(R1: float, R2: float) -> float:
243 return Vref*(1 + R2/R1)
244
245 svout = Solver(
246 components=(
247 Resistor(suffix='1', series=E96, minimum=R1max/10, maximum=R1max),
248 Resistor(
249 suffix='2', series=E96, calculate=lambda R1: R1*(Voutnom/Vref - 1),
250 ),
251 ),
252 outputs=(
253 Output('Vout', unit='V', expected=Voutnom, calculate=Vo),
254 ),
255 )
256 svout.solve()
257
258 Ct_approx = ComponentValue(exact=Ct, component=Capacitor('t', E12))
259 Rsc_approx = ComponentValue(
260 exact=Rsc, component=Resistor('sc', E24)
261 ).get_best()
262
263 Rsc2 = Rsc_approx.approx
264 _, _, (R12, R22) = svout.candidates[0]
265 Co2 = 470e-6
266 Ct2 = Ct_approx.approx
267 L2 = 470e-6 # the RLB0914-471KL, Rdc < 1.3Ω
268 ton2 = Ct2/Gt
269 toff2 = ton2/ton_toff
270 t2 = ton2 + toff2
271 f2 = 1/t2
272 Vripple2 = Ipksw*t2/Co2/8
273 Vout2 = Vo(R12.approx, R22.approx)
274
275 svout.print(1)
276
277 print(
278 f'\n Rsc = {Rsc_approx.fmt_exact()} ~ {Rsc_approx}'
279 f'\n R1 < {fmt_eng(R1max, "Ω", 4)} -> {R12}'
280 f'\n R2 = {R22}'
281 f'\n Co > {fmt_eng(Comin, "F", 4)} -> {fmt_eng(Co2, "F")}'
282 f'\n Ct < {Ct_approx.fmt_exact()} ~ {Ct_approx}'
283 f'\n L > {fmt_eng(Lmin, "H", 4)} -> {fmt_eng(L2, "H")}'
284 f'\n ton < {fmt_eng(ton, "s", 4)} -> {fmt_eng(ton2, "s", 4)}'
285 f'\ntoff < {fmt_eng(toff, "s", 4)} -> {fmt_eng(toff2, "s", 4)}'
286 f'\n f > {fmt_eng(fmin, "Hz", 4)} -> {fmt_eng(f2, "Hz", 4)}'
287 f'\nVrip < {fmt_eng(Vripple, "V", 4)} -> {fmt_eng(Vripple2, "V", 4)}'
288 f'\nVout = {fmt_eng(Voutnom, "V", 4)} -> {fmt_eng(Vout2, "V", 4)}'
289 f'\n'
290 )
291
292
293opamp3()
A value associated with a component - to track approximated values.
Definition: efind.py:128
A calculated parameter - potentially but not necessarily a circuit output - to be calculated and chec...
Definition: efind.py:351
Basic recursive solver class that does a brute-force search through some component values.
Definition: efind.py:381
def complex_smps()
Definition: examples.py:198
def buck()
Definition: examples.py:168
def opamp2()
Definition: examples.py:48
def opamp()
Definition: examples.py:7
def opamp3()
Definition: examples.py:98