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 /929/CH2/EX2.5.a/Example2_5_a.sce | |
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 '929/CH2/EX2.5.a/Example2_5_a.sce')
-rwxr-xr-x | 929/CH2/EX2.5.a/Example2_5_a.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/929/CH2/EX2.5.a/Example2_5_a.sce b/929/CH2/EX2.5.a/Example2_5_a.sce new file mode 100755 index 000000000..796b6cbef --- /dev/null +++ b/929/CH2/EX2.5.a/Example2_5_a.sce @@ -0,0 +1,15 @@ +//Example 2.5(a)
+
+clear;
+
+clc;
+
+R1=15*10^3;//From the result of Example 2.4
+
+p=0.01;//For 1% tolerance p=t/100=1/100=0.01
+
+emax=4*p;//imbalace factor
+
+Romin=R1/emax;
+
+printf("Ro can be anywhere in the range Ro>=%.2f kohms",Romin*10^(-3));
\ No newline at end of file |