summaryrefslogtreecommitdiff
path: root/182/CH11/EX11.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /182/CH11/EX11.1
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 '182/CH11/EX11.1')
-rwxr-xr-x182/CH11/EX11.1/11_1.txt2
-rwxr-xr-x182/CH11/EX11.1/example11_1.sce14
2 files changed, 16 insertions, 0 deletions
diff --git a/182/CH11/EX11.1/11_1.txt b/182/CH11/EX11.1/11_1.txt
new file mode 100755
index 000000000..9bb01bf84
--- /dev/null
+++ b/182/CH11/EX11.1/11_1.txt
@@ -0,0 +1,2 @@
+1.f(min)=106 Hz
+ f(max)=1061 Hz \ No newline at end of file
diff --git a/182/CH11/EX11.1/example11_1.sce b/182/CH11/EX11.1/example11_1.sce
new file mode 100755
index 000000000..6699533e4
--- /dev/null
+++ b/182/CH11/EX11.1/example11_1.sce
@@ -0,0 +1,14 @@
+// to calculate the maximum and minimmum output frequencies of oscillator in fig 11-1
+// example 11-1 in page 317
+clc;
+// Data Given
+R=[5e+3 500];// resistance R2 and R1 all in ohm
+C1=300D-9; C2=C1;// Capacitance=300 nF
+// calculation
+f=['f(min)' 'f(max)'];
+for n=1:2
+ printf("%s=%d Hz\n",f(n),1/(2*%pi*C1*R(n)));// frequency in hertz
+end
+//result
+//f(min)=106 Hz
+//f(max)=1061 Hz \ No newline at end of file