From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2528/CH9/EX9.12/Ex9_12.sce | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 2528/CH9/EX9.12/Ex9_12.sce (limited to '2528/CH9/EX9.12') 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 -- cgit