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 /2528/CH9/EX9.9/Ex9_9.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 '2528/CH9/EX9.9/Ex9_9.sce')
-rwxr-xr-x | 2528/CH9/EX9.9/Ex9_9.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2528/CH9/EX9.9/Ex9_9.sce b/2528/CH9/EX9.9/Ex9_9.sce new file mode 100755 index 000000000..e65412c84 --- /dev/null +++ b/2528/CH9/EX9.9/Ex9_9.sce @@ -0,0 +1,17 @@ +// Chapter 9
+// determine Output frequency
+// Page.No-333
+// Example9_9
+//Figure 9.37
+// Given
+clear;clc;
+Vp=6; //in V
+R1=4000; //in Ohm
+C=330*10^-12; //in Farad
+C2=270*10^-12; //in Farad
+fo=0.3/(R1*C);
+printf("\n Free runing frequency = %.0f Hz\n",fo); // Result
+fl=8*fo/Vp;
+printf("\n Lock Range = %.0f Hz\n",fl); // Result
+fc=sqrt(2*%pi*fl/(3600*C2))/(2*%pi);
+printf("\n Capture Range = %.0f Hz\n",fc); // Result
|