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 /199/CH6/EX6.16.a/Example_6_16_a.sce | |
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 '199/CH6/EX6.16.a/Example_6_16_a.sce')
-rwxr-xr-x | 199/CH6/EX6.16.a/Example_6_16_a.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/199/CH6/EX6.16.a/Example_6_16_a.sce b/199/CH6/EX6.16.a/Example_6_16_a.sce new file mode 100755 index 000000000..e56107384 --- /dev/null +++ b/199/CH6/EX6.16.a/Example_6_16_a.sce @@ -0,0 +1,18 @@ +// Chapter6
+// Page.No-238
+// Example_6_16_a
+// Design of differentiator
+// Given
+clear;clc;
+C1=0.1*10^-6; // Assume
+fa=1*10^3; // Freq at which gain is 0 dB
+Rf=1/(2*%pi*fa*C1); // Using fa=1/(2*%pi*Rf*C1)
+printf("\n Feedback resistance is = %.1f ohm \n",Rf)
+Rf=1.5*10^3; // Approximation
+fb=20*10^3; // Gain limiting freq
+R1=1/(2*%pi*fb*C1);
+printf("\n Resistance,R1 is = %.1f ohm \n",R1)
+R1=82; // Approximation
+Cf=R1*C1/Rf;
+printf("\n Capacitance,Cf is = %.10f farad \n",Cf)
+Cf=0.005*10^-6; // Approximation
\ No newline at end of file |