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 /1859/CH7/EX7.3 | |
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 '1859/CH7/EX7.3')
-rwxr-xr-x | 1859/CH7/EX7.3/exa_7_3.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1859/CH7/EX7.3/exa_7_3.sce b/1859/CH7/EX7.3/exa_7_3.sce new file mode 100755 index 000000000..9923e81cb --- /dev/null +++ b/1859/CH7/EX7.3/exa_7_3.sce @@ -0,0 +1,11 @@ +// Exa 7.3
+clc;
+clear;
+close;
+// Given data
+C2= 0.2;// in micro F
+Ratio21= 10/1;// resistance ratio R2/R1
+C1= C2*Ratio21;// in micro F
+Ratio21_desh= 1/10;
+C1_desh= C2*Ratio21_desh;// in micro F
+disp("So range of measurement of unknown capacitance is "+string(C1_desh)+" micro F to "+string(C1)+" micro F")
|