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 /1994/CH7/EX7.5/Example7_5.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 '1994/CH7/EX7.5/Example7_5.sce')
-rwxr-xr-x | 1994/CH7/EX7.5/Example7_5.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1994/CH7/EX7.5/Example7_5.sce b/1994/CH7/EX7.5/Example7_5.sce new file mode 100755 index 000000000..1c6c4d124 --- /dev/null +++ b/1994/CH7/EX7.5/Example7_5.sce @@ -0,0 +1,15 @@ +//Chapter-7,Example7_5,pg 7-25
+I1=10*10^-3
+Im=2*10^-3
+Rm=75
+R1=(Im*Rm)/(I1-Im)
+I2=50*10^-3
+R2=(Im*Rm)/(I2-Im)
+I3=100*10^-3
+R3=(Im*Rm)/(I3-Im)
+printf("designed multi-range ammeter\n")
+printf("full scale deflection Im=%.5f A\n",Im)
+printf("meter resistance Rm=%.2f ohm\n",Rm)
+printf("R1=%.2f ohm\n",R1)
+printf("R2=%.2f ohm\n",R2)
+printf("R3=%.2f ohm\n",R3)
|