2 Solver, Output, Capacitor, Resistor, ComponentValue, fmt_eng,
13 def Vo(Vi: float, R1: float, R3: float, R4: float) -> float:
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)
28 suffix=
'1', series=E96, minimum=50e3, maximum=500e3,
31 suffix=
'3', series=E96, calculate=
lambda R1: R1*16/17,
34 suffix=
'4', series=E96, calculate=
lambda R1, R3: R1*16/23,
38 Output(
'Vol', unit=
'V', expected=3, calculate=Vol),
39 Output(
'Voh', unit=
'V', expected=10, calculate=Voh),
56 ((Vref - Vi1)*(Vi2 - Vo2) - (Vref - Vi2)*(Vi1 - Vo1)) /
57 ((Vref - Vi2)*Vi1 - (Vref - Vi1)*Vi2)
59 a = (Vi1*(b + 1) - Vo1)/(Vref - Vi1)
61 def Vo(Vi: float, R3: float, R2: float, R1: float) -> float:
69 def Vol(R3: float, R2: float, R1: float) -> float:
70 return Vo(3.4, R3, R2, R1)
72 def Voh(R3: float, R2: float, R1: float) -> float:
73 return Vo(4.1, R3, R2, R1)
78 suffix=
'3', series=E96, minimum=50e3, maximum=500e3,
81 suffix=
'2', series=E96, calculate=
lambda R3: R3/b,
84 suffix=
'1', series=E96, calculate=
lambda R3, R2: R3/a,
88 Output(
'Vol', unit=
'V', expected=1, calculate=Vol),
89 Output(
'Voh', unit=
'V', expected=5, calculate=Voh),
105 Vi1, Vi2 = 0.2*Vih, 0.8*Vih
106 gain = -Vss/(Vi2 - Vi1)
109 a = R1R2 = 1 - Vih/Vss
110 b = R4R3 = (gain + offset/Vss - 1) / (1 - Vdd/Vss)
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
123 def Vilact(*args: float) -> float:
124 return Vi(Vss, *args)
126 def Vihact(*args: float) -> float:
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
134 def getR5(R1: float, R2: float, R3: float, R4: float) -> float:
135 c = R4R5 = gain * (1 + R1/R2) - R4/R3 - 1
141 suffix=
'1', series=E24, minimum=10e3, maximum=100e3,
144 suffix=
'2', series=E24, calculate=
lambda R1: R1/R1R2,
147 suffix=
'3', series=E24, minimum=10e3, maximum=100e3,
150 suffix=
'4', series=E24, calculate=
lambda R1, R2, R3: R3*R4R3,
153 suffix=
'5', series=E24, calculate=getR5,
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),
178 R2max = Vref / Vout * R12max
182 Resistor(suffix=
'2', series=E96, minimum=R2max/10, maximum=R2max),
184 suffix=
'1', series=E96, calculate=
lambda R2: R2*(Vout/Vref - 1),
189 'Vout', unit=
'V', expected=Vout,
190 calculate=
lambda R2, R1: Vref*(1 + R1/R2),
205 Vinmin = Vinnom*(1 - loadreg - loadtol)
210 Vripple = 5e-3 * Voutnom
219 Vdiff = Vinmin - Vsat - Voutnom
225 ton_toff = (Voutnom + Vf)/Vdiff
226 toff = tmax/(1 + ton_toff)
228 assert ton/(ton + toff) < 6/7
232 Comin = Ipksw*tmax/8/Vripple
233 Lmin = Vdiff*ton/Ipksw
235 Ipkswnom = (Vinnom - Vsat - Voutnom)*ton/Lmin
239 Rsc = Vsense/Ipkswnom
242 def Vo(R1: float, R2: float) -> float:
243 return Vref*(1 + R2/R1)
247 Resistor(suffix=
'1', series=E96, minimum=R1max/10, maximum=R1max),
249 suffix=
'2', series=E96, calculate=
lambda R1: R1*(Voutnom/Vref - 1),
253 Output(
'Vout', unit=
'V', expected=Voutnom, calculate=Vo),
260 exact=Rsc, component=
Resistor(
'sc', E24)
263 Rsc2 = Rsc_approx.approx
264 _, _, (R12, R22) = svout.candidates[0]
266 Ct2 = Ct_approx.approx
269 toff2 = ton2/ton_toff
272 Vripple2 = Ipksw*t2/Co2/8
273 Vout2 = Vo(R12.approx, R22.approx)
278 f
'\n Rsc = {Rsc_approx.fmt_exact()} ~ {Rsc_approx}'
279 f
'\n R1 < {fmt_eng(R1max, "Ω", 4)} -> {R12}'
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)}'
A value associated with a component - to track approximated values.
A calculated parameter - potentially but not necessarily a circuit output - to be calculated and chec...
Basic recursive solver class that does a brute-force search through some component values.