summaryrefslogtreecommitdiff
path: root/3554/CH15/EX15.1
diff options
context:
space:
mode:
Diffstat (limited to '3554/CH15/EX15.1')
-rw-r--r--3554/CH15/EX15.1/Ex15_1.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3554/CH15/EX15.1/Ex15_1.sce b/3554/CH15/EX15.1/Ex15_1.sce
new file mode 100644
index 000000000..dcdb5d451
--- /dev/null
+++ b/3554/CH15/EX15.1/Ex15_1.sce
@@ -0,0 +1,19 @@
+//Exa 15.1
+
+clc;
+clear all;
+
+
+// Given data
+Fh=2;// kHz
+Af=2;// Pass band gain
+
+// Solution
+
+disp(" Let C1= 0.01 micro farads ");
+C=0.01;//micro farads
+R=1/(2*%pi*Fh*C);// k Ohms
+printf(' The calculated value of R is %.3f K ohms. Nearest practical value for R1 is 8.2 k Ohms\n',R);
+//Af=1+Rf/R1;
+// As Af=2. So, Rf=R1
+disp(" In this case , Rf=R1= 10 k Ohms is selected ");