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 /182/CH3/EX3.9 | |
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 '182/CH3/EX3.9')
-rwxr-xr-x | 182/CH3/EX3.9/example3_9.sce | 16 | ||||
-rwxr-xr-x | 182/CH3/EX3.9/example3_9.txt | 6 |
2 files changed, 22 insertions, 0 deletions
diff --git a/182/CH3/EX3.9/example3_9.sce b/182/CH3/EX3.9/example3_9.sce new file mode 100755 index 000000000..7259082f7 --- /dev/null +++ b/182/CH3/EX3.9/example3_9.sce @@ -0,0 +1,16 @@ + +// example 3-9 in page 53 +clc; +//given data +A=['a' 'b']; +Rm=1e+3;// coil resistance of 1 k ohm +Rs=890.7e+3;//multiplier resistance in ohm +Vf=0.7;//voltage drop across the diode in volt +//calculation +m=0;// reference to indicate a and b respectively +for n=75:-25:50 //voltages 50 and 75 volts + Iav=(0.637)*(((1.414*n)-2*Vf)/(Rs+Rm));// average current through pmcc instrument in ampere + m=m+1; + printf("(%c),\nIav for %d V is %.2f micro-A\n",A(m),n,Iav*10^6); + printf("pointer indication for %d V is %.2f FSD\n",n,10000*Iav); +end diff --git a/182/CH3/EX3.9/example3_9.txt b/182/CH3/EX3.9/example3_9.txt new file mode 100755 index 000000000..25bdeac4b --- /dev/null +++ b/182/CH3/EX3.9/example3_9.txt @@ -0,0 +1,6 @@ +9. (a),
+Iav for 75 V is 74.76 micro-A
+pointer indication for 75 V is 0.75 FSD
+(b),
+Iav for 50 V is 49.51 micro-A
+pointer indication for 50 V is 0.50 FSD
\ No newline at end of file |