Expand description
Ohm’s law and basic electrical calculators.
Sub-calculators:
- E-I-R (V = IR, P = VI)
- LED Bias resistor
- Resistor series/parallel
- Pi-pad attenuator
- T-pad attenuator
- Capacitor series/parallel
- Inductor series/parallel
Structs§
- Attenuator
Result - Result of a symmetric Pi-pad or T-pad attenuator calculation.
- Capacitor
Combination Result - Result of a capacitor series/parallel combination.
- EirResult
- Result of an E-I-R (voltage-current-resistance) calculation.
- Inductor
Combination Result - Result of an inductor series/parallel combination.
- LedBias
Result - Result of an LED bias resistor calculation.
- Resistor
Combination Result - Result of a resistor series/parallel combination.
Functions§
- capacitors_
parallel - Sum capacitors in parallel (C_total = C1 + C2 + … + Cn).
- capacitors_
series - Combine capacitors in series (1/C_total = 1/C1 + 1/C2 + … + 1/Cn).
- eir
- Calculate voltage, current, resistance, and power given any two of V, I, R.
- inductors_
parallel - Combine inductors in parallel (1/L_total = 1/L1 + … + 1/Ln, no mutual coupling).
- inductors_
series - Sum inductors in series (L_total = L1 + L2 + … + Ln, no mutual coupling).
- led_
bias - Calculate LED bias resistor.
- pi_pad
- Calculate a symmetric Pi-pad attenuator.
- resistors_
parallel - Combine resistors in parallel.
- resistors_
series - Sum resistors in series.
- t_pad
- Calculate a symmetric T-pad attenuator.