summaryrefslogtreecommitdiff
path: root/2528/CH9/EX9.12/Ex9_12.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2528/CH9/EX9.12/Ex9_12.sce
downloadScilab-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.12/Ex9_12.sce')
-rwxr-xr-x2528/CH9/EX9.12/Ex9_12.sce38
1 files changed, 38 insertions, 0 deletions
diff --git a/2528/CH9/EX9.12/Ex9_12.sce b/2528/CH9/EX9.12/Ex9_12.sce
new file mode 100755
index 000000000..84882ff64
--- /dev/null
+++ b/2528/CH9/EX9.12/Ex9_12.sce
@@ -0,0 +1,38 @@
+// Chapter 9
+// determine Output frequency
+// Page.No-344
+// Example_9_12
+//Figure 9.47
+// Given
+clear;clc;
+R=110000; //in Ohm
+C=0.1*10^-6; //in Farad
+//
+disp("When C=0.1microF")
+
+fomin=0.15/(R*C);
+printf("\n For low range with lowest frequency = %.1f Hz\n",fomin); // Result
+//
+R1=10000; //in Ohm
+fomax=0.15/(R1*C);
+printf("\n For low range with highest frequency = %.1f Hz\n",fomax); // Result
+//
+disp("When C=0.01microF")
+R=110000; //in Ohm
+C=0.01*10^-6; //in Farad
+fomin=0.15/(R*C);
+printf("\n For low range with lowest frequency = %.1f Hz\n",fomin); // Result
+//
+R1=10000; //in Ohm
+fomax=0.15/(R1*C);
+printf("\n For low range with highest frequency = %.1f Hz\n",fomax); // Result
+//
+disp("When C=0.001microF")
+R=110000; //in Ohm
+C=0.001*10^-6; //in Farad
+fomin=0.15/(R*C);
+printf("\n For low range with lowest frequency = %.1f Hz\n",fomin); // Result
+//
+R1=10000; //in Ohm
+fomax=0.15/(R1*C);
+printf("\n For low range with highest frequency = %.1f Hz\n",fomax); // Result