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 --- 1382/CH5/EX5.10/EX_5_10.SCE | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 1382/CH5/EX5.10/EX_5_10.SCE (limited to '1382/CH5/EX5.10/EX_5_10.SCE') diff --git a/1382/CH5/EX5.10/EX_5_10.SCE b/1382/CH5/EX5.10/EX_5_10.SCE new file mode 100755 index 000000000..acfe30558 --- /dev/null +++ b/1382/CH5/EX5.10/EX_5_10.SCE @@ -0,0 +1,18 @@ +// Example 5.9:3-db frequency and bandwidth +clc; +clear; +close; +Cp=1;//PARALLEL capacitance IN PICO FARAD +Cs=2;//series capacitance IN micro FARAD +rs=1;//series resistance in killo ohms +rp=2;//PARALLEL resistance in killo ohms +ts= ((rs+rp)*10^3*Cs*10^-6);//time constant +tp= ((rs*rp)/(rs+rp)*Cp*10^-12);//time constant +fl= (1/(2*%pi*ts));//lower frequency in hertz +fh= (1/(2*%pi*tp));//upper frequency in hertz +BW=fh-fl;//bandwidth in hertz +ts= (rs+rp)*10^3*Cs*10^-12;//time constant +disp(ts," time constant in second is") +disp(fl,"lower 3 dB frequency in hertz") +disp(fh,"upper 3 dB frequency in hertz") +disp(BW,"bandwidth in hertz is") -- cgit