summaryrefslogtreecommitdiff
path: root/182/CH8/EX8.2/example8_2.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /182/CH8/EX8.2/example8_2.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 '182/CH8/EX8.2/example8_2.sce')
-rwxr-xr-x182/CH8/EX8.2/example8_2.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/182/CH8/EX8.2/example8_2.sce b/182/CH8/EX8.2/example8_2.sce
new file mode 100755
index 000000000..43e95ae04
--- /dev/null
+++ b/182/CH8/EX8.2/example8_2.sce
@@ -0,0 +1,10 @@
+// to find the range of Cx in fig 8-5
+// example 8-2 in page 199
+clc;
+// data given
+C1=0.1e-6; //standard capacitance in micro farad
+r=[100/1 1/100];// range of the ratio R3/R4
+Cx=C1*r;// range of Cx
+printf("The range of Cx is from %.3f micro-F to %d micro-F",Cx(2)*10^6,Cx(1)*10^6);
+//result
+//The range of Cx is from 0.001 micro-F to 10 micro-F \ No newline at end of file