Лабораторная 10.1 — Пассивный RC-фильтр¶
Цель¶
Научиться рассчитывать простой RC-фильтр и объяснять, как он влияет на сигнал перед измерением или SDR-захватом.
Что выполняется¶
В работе студент:
- выбирает тип фильтра;
- рассчитывает частоту среза;
- выбирает номиналы R и C;
- строит схему подключения;
- оценивает применимость фильтра для SDR-стенда.
Результат¶
После выполнения работы должны быть получены:
- расчёт RC-фильтра;
- схема подключения;
- таблица параметров;
- инженерный вывод.
Подробная техническая часть¶
Lab 10.1 — Passive RC Filter¶
Goal¶
Design a simple passive RC low-pass or high-pass filter and explain how it affects a signal before digitization or SDR capture.
Engineering question¶
How can a simple resistor-capacitor network limit bandwidth and reduce unwanted components before an SDR receiver?
Low-pass cutoff frequency¶
f_c = 1 / (2*pi*R*C)
Example calculation¶
| Parameter | Value |
|---|---|
| R | 1 kOhm |
| C | 100 nF |
| Expected cutoff | approximately 1.59 kHz |
Practical steps¶
- Choose target cutoff frequency.
- Select available resistor and capacitor values.
- Calculate expected cutoff.
- Draw the circuit.
- Build or simulate the circuit.
- Measure or estimate amplitude response.
- Compare expected and measured cutoff.
Schematic concept¶
flowchart LR
VIN[Input] --> R[Resistor]
R --> VOUT[Output]
VOUT --> C[Capacitor to ground]
C --> GND[Ground]
Report checklist¶
- [ ] State target cutoff frequency.
- [ ] State selected R and C.
- [ ] Calculate expected cutoff.
- [ ] Draw the schematic.
- [ ] Explain whether it is low-pass or high-pass.
- [ ] Explain how it can be used in an SDR bench.
Engineering conclusion template¶
Generate the reference cutoff and response points before selecting real components:
python blocks/block_10_kicad_and_basic_electronics/python/lab_10_2_rf_passives_design.py
The generated docs/assets/lab102_rf_passives_metrics.json is the ideal calculation baseline. Measured values must be reported separately.
The selected RC filter uses R = ____ and C = ____, giving an expected cutoff of ____ Hz.
The circuit is suitable / not suitable for the SDR bench because ______.