diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2621/CH7/EX7.13 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2621/CH7/EX7.13')
-rw-r--r-- | 2621/CH7/EX7.13/Ex7_13.sce | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/2621/CH7/EX7.13/Ex7_13.sce b/2621/CH7/EX7.13/Ex7_13.sce new file mode 100644 index 000000000..80bfd63ca --- /dev/null +++ b/2621/CH7/EX7.13/Ex7_13.sce @@ -0,0 +1,30 @@ +// Example 7.13
+clc;
+clear;
+close;
+// Given data
+format('v',5);
+f_L= 200;// in Hz
+f_H= 1*10^3;// in Hz
+alpha=4;// passband gain
+C_desh= 0.01*10^-6;// in F (assume)
+R_desh= 1/(2*%pi*f_H*C_desh);// in Ω
+R_desh= R_desh*10^-3;// in kΩ
+disp("The value of R'' is : "+string(R_desh)+" kΩ (Approx. 20 kΩ)")
+R_desh= 20;// in kΩ (standard value)
+// First Order High-Pass Filter
+C= 0.05*10^-6;// in F (assume)
+R= 1/(2*%pi*f_L*C);// in Ω
+R= R*10^-3;// in kΩ
+R1= 10;// in kΩ
+Rf= R1;// in kΩ
+C_desh= C_desh*10^6;// in µF
+C= C*10^6;// in µF
+disp("The value of R is : "+string(R)+" kΩ (Approx. 20 kΩ)")
+R= 20;// in kΩ (standard value)
+disp("The value of R1 and Rf is : "+string(R1)+" kΩ")
+disp("The value of C'' is : "+string(C_desh)+" µF")
+disp("The value of C is : "+string(C)+" µF")
+
+
+
|