summaryrefslogtreecommitdiff
path: root/1850/CH6/EX6.1
diff options
context:
space:
mode:
Diffstat (limited to '1850/CH6/EX6.1')
-rwxr-xr-x1850/CH6/EX6.1/exa_6_1.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/1850/CH6/EX6.1/exa_6_1.sce b/1850/CH6/EX6.1/exa_6_1.sce
new file mode 100755
index 000000000..d2def07a8
--- /dev/null
+++ b/1850/CH6/EX6.1/exa_6_1.sce
@@ -0,0 +1,24 @@
+// Exa 6.1
+clc;
+clear;
+close;
+// Given Data
+f_H= 2;// in kHz
+f_H= f_H*10^3;// in Hz
+C=0.01;// in micro F
+C=C*10^-6;// in F
+R= 1/(2*%pi*f_H*C);// in ohm
+R=R*10^-3;// in kohm
+// R may be taken a pot of 10 k ohm
+R=10;// in k ohm
+// Since the passbond gain is 2.5, so
+// 1+Rf/R1= 2.5 or Rf= 1.5*R1
+// Since Rf||R1
+R1= R*2.5/1.5;// in k ohm
+Rf= R1*1.5;// in k ohm
+disp("Value of R1 is : "+string(R1)+" k ohm")
+disp("Value of Rf is : "+string(Rf)+" k ohm")
+
+
+
+