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 /1850/CH6/EX6.1 | |
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 '1850/CH6/EX6.1')
-rwxr-xr-x | 1850/CH6/EX6.1/exa_6_1.sce | 24 |
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")
+
+
+
+
|