带通 带阻滤波器 幅频响应_电子基础-低通、高通、带通、带阻、状态可调滤波器电路知识讲解...

1 二阶压控低通滤波器

二阶压控低通滤波器电路如图所示,由R1、C1 及R2、C2 分别构成两个一阶低通滤波器,但C1 接输出端,引入电压正反馈,形成压控滤波器。

99164a206e68b6f39ddcd667095fd186.png

(1) 传递函数

a73354bb86abcafbf41fdcc75e832a4b.png

(2) 频率特性

9cdb8e55cfda78fd1f7fcd68677248f3.png

可见该低通滤波器特点是阻尼系数ζ 由电阻R1、R2,C1、C2 的比决定;而固有频率ω0与R1、R2、C1、C2 具体数值有关,即ω0与ζ 独立可调,互不影响。

(3) 参数选择

为方便参数匹配,考虑到标称电容种类较少,一般选择C1=C2=C。通过选择不同的R1、R2 满足特定的固有频率ω0 、ζ 。

10ba59351f43452dad5e39e318db261b.png
55281acd7b6c4c01577dfd07f489b3a5.png
cc7a03ed36c4d7c974e1e101639b88f3.png
9ef4d6aad2dafcc85424cb734d77c3c8.png

2单位增益二阶压控低通滤波器

对于二阶压控低通滤波器来说,当通带放大倍数Aup =1(单位增益)时,图所示电路变为图所示,其中RF=R1+R2。

1ae1dc3668c14b57a6b239b40f230d12.png

(1) 基本关系

ed034f1e18a15155e61c9c5e1aa4a594.png
eda2ef8fe1fc043bfdf53cacfde9e0c1.png
44d6b212122991e293d0da0815528001.png

(4) 参数选择

在固有频率ω0 、阻尼系数ζ 已知情况下,设计步骤如下:

edcf926d5fd4ff87efd9b9cd0fb49165.png

3二阶低通滤波器

51fb96345032bdce26817fc5cfb23400.png

8月25日晚上八点,由卧龙会布布熊来一次讲座,内容:《工程师应该掌握的PCB热分析知识和技能》。我们来一次PCB板热仿真,赶紧加入下面卧龙会IT技术圈子,详情看精华区,上次的传输线仿真讲座录制视频也记得去观看,学完薪资涨涨涨!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
float DigFil(invar, setic) float invar; int setic; /******************************************************************************/ /* Filter Solutions Version 2009 Nuhertz Technologies, L.L.C. */ /* www.nuhertz.com */ /* +1 602-279-2448 */ /* 3rd Order Band Pass Butterworth */ /* Bilinear Transformation with Prewarping */ /* Sample Frequency = 5.000 KHz */ /* Standard Form */ /* Arithmetic Precision = 4 Digits */ /* */ /* Center Frequency = 300.0 Rad/Sec */ /* Pass Band Width = 20.00 Rad/Sec */ /* */ /******************************************************************************/ /* */ /* Input Variable Definitions: */ /* Inputs: */ /* invar float The input to the filter */ /* setic int 1 to initialize the filter to zero */ /* */ /* Option Selections: */ /* Standard C; Initializable; Internal States; Not Optimized; */ /* */ /* There is no requirement to ever initialize the filter. */ /* The default initialization is zero when the filter is first called */ /* */ /******************************************************************************/ /* */ /* This software is automatically generated by Filter Solutions */ /* no restrictions from Nuhertz Technologies, L.L.C. regarding the use and */ /* distributions of this software. */ /* */ /******************************************************************************/ { float sumnum=0.0, sumden=0.0; int i=0; static float states[6] = {0.0,0.0,0.0,0.0,0.0,0.0}; static float znum[7] = { -7.968e-09, 0.0, 2.39e-08, 0.0, -2.39e-08, 0.0, 7.968e-09 }; static float zden[6] = { .992, -5.949, 14.88, -19.86, 14.92, -5.981 }; if (setic==1){ for (i=0;i<6;i++) states[i] = [i] = [i]*invar; return 0.0; } else{ sumnum = sumden = 0.0; for (i=0;i<6;i++){ sumden += states[i]*zden[i]; sumnum += states[i]*znum[i]; if (i<5) states[i] = states[i+1]; } states[5] = invar-sumden; sumnum += states[5]*znum[6]; return sumnum; } }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值