From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 929/CH3/EX3.15/Example3_15.sce | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100755 929/CH3/EX3.15/Example3_15.sce (limited to '929/CH3/EX3.15/Example3_15.sce') diff --git a/929/CH3/EX3.15/Example3_15.sce b/929/CH3/EX3.15/Example3_15.sce new file mode 100755 index 000000000..7be2f7287 --- /dev/null +++ b/929/CH3/EX3.15/Example3_15.sce @@ -0,0 +1,37 @@ +//Example 3.15 + +clear; + +clc; + +C=10*10^(-9); + +C1=C; + +C2=C; + +f0=1*10^3; + +Q=10; + +H0dB=20; + +H0=10^(H0dB/20); + +R2=(2*Q)/(2*%pi*f0*C); + +R1A=Q/(H0*2*%pi*f0*C); + +R1B=R1A/((2*Q^2/H0)-1); + +printf("Designed Multiple Feedback Band Pass Filter :") + +printf("\nR1A=%.2f kohms",R1A*10^(-3)); + +printf("\nR1B=%.2f ohms",R1B); + +printf("\nR2=%.2f kohms",R2*10^(-3)); + +printf("\nC1=%.2f nF",C1*10^(9)); + +printf("\nC2=%.2f nF",C2*10^(9)); \ No newline at end of file -- cgit