symbols, nets & annotation standards
Note ‒ A schematic is a communication tool; clarity outweighs artistic flair. Keep current flow left-to-right and signal flow top-to-bottom.
+VCC
, -VEE
, and use different ground symbols for analogue (AGND
) and digital (DGND
) returns to minimise noise coupling.VREF
, SENSOR_IN
, ADC_DRV
) to reduce clutter and assist PCB layout.R1
, capacitor C2
, op-amp U1A
; keep numbers sequential along signal path.Tip ‒ Place decoupling capacitors (0 .1 µF + 10 µF) close to every IC power pin pair; draw them beside the IC for emphasis.
buffers, dividers, filters & amplifiers
VOUT=VIN·R₂/(R₁+R₂)
fc=1/(2πRC)
AV=1+RF/RG
AV=1+2R/RG
(outer resistors matched).Design Hint ‒ Always place your anti-alias RC filter after the buffer. The op-amp’s low output impedance ensures the calculated fc
remains accurate.
quick-reference maths for hand checks
Concept | Expression | Purpose |
---|---|---|
Ohm’s Law | V = I · R | Relate current, voltage & resistance. |
Voltage Divider | VOUT=VIN·R₂/(R₁+R₂) | Attenuate or sense voltage levels. |
Low-Pass RC Cut-off | fc=1/(2πRC) | Set anti-alias bandwidth. |
Non-Inv Op-Amp Gain | AV=1+RF/RG | Amplify sensor outputs. |
RC Time Constant | τ = R · C | Step response & settling time. |
Impedance Match | ZOUT ≪ ZIN | Minimise loading error. |
Derivation snap-in – For a first-order filter, the -3 dB point occurs where the magnitude of the transfer function drops to 1/√2
. Starting from
|H(jω)| = 1/√(1+(ωRC)²)
, set |H|=1/√2
⇒ ω = 1/RC
⇒ fc=1/(2πRC)
.
from sensor to digital value – a step-by-step schematic
RTH
forms upper leg of a divider, R₁=10 kΩ
to GND; mid-node scales 0 → 3.3 V
.R=1 kΩ
, C=4.7 nF
gives fc≈34 kHz
; enough beyond Nyquist of 4 kHz sample rate.RC<50 ns
requirement.; Minimal SPICE netlist for simulation
V1 VIN 0 DC 3.3
R1 VIN NODE1 10k
RTH NODE1 0 NTC10k
EBUF NODE2 0 NODE1 0 1 ; ideal op-amp buffer
RFLT NODE2 NODE3 1k
CFLT NODE3 0 4.7n
RLOAD NODE3 0 100k
.END
CAD, simulation & documentation tips
.sch
/.pcb
in Git with XML diffs enabled; commit netlist & BOM for CI-generated PDFs.Further Reading – Texas Instruments “Analog Engineer’s Pocket Reference” and Analog Devices “Op-Amp Applications Handbook”.