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/CH6/EX6.7 | |
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/CH6/EX6.7')
-rwxr-xr-x | 1859/CH6/EX6.7/exa_6_7.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1859/CH6/EX6.7/exa_6_7.sce b/1859/CH6/EX6.7/exa_6_7.sce new file mode 100755 index 000000000..66fad7c36 --- /dev/null +++ b/1859/CH6/EX6.7/exa_6_7.sce @@ -0,0 +1,15 @@ +// Exa 6.7
+clc;
+clear;
+close;
+// Given data
+P=100;// in ohm
+Q=100;// in ohm
+S=230;// in ohm
+R=P*S/Q;// in ohm
+del_P_BY_P= 0.02;// in %
+del_Q_BY_Q= 0.02;// in %
+del_S_BY_S= 0.01;// in %
+del_R_BY_R= del_P_BY_P + del_Q_BY_Q + del_S_BY_S;// in %
+disp(del_R_BY_R,"Relative limiting error of unknown resistance in percentage")
+disp("So limiting values of unknown resistance "+string(R-R*del_R_BY_R/100)+" ohm to "+string(R+R*del_R_BY_R/100)+" ohm")
|