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.6 | |
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.6')
-rwxr-xr-x | 1994/CH7/EX7.6/Example7_6.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/1994/CH7/EX7.6/Example7_6.sce b/1994/CH7/EX7.6/Example7_6.sce new file mode 100755 index 000000000..e23260608 --- /dev/null +++ b/1994/CH7/EX7.6/Example7_6.sce @@ -0,0 +1,24 @@ +//Chapter-7,Example7_6,pg 7-27
+I1=10
+Im=1*10^-3
+Rm=50
+//in position-1 R1 is in shunt with R2+R3+Rm
+//R1=10^-4(R2+R3+50)......(1)
+//in position-2 (R1+R2) is in shunt with R3+Rm
+//R1+R2=2*10^-4(R3+50).....(2)
+//in position-3 R1+R2+R3 is in shunt with Rm
+//R1+R2+R3=0.05............(3)
+//from.....(3)
+//R1+R2=0.05-R3
+//substituting in........(2)
+R3=0.04/1.0002
+//R2=0.01-R1........(4)
+//substituing in (1)
+R1=5.00139*10^-3/1.0001
+R2=0.01-R1//from........(4)
+printf("various sections of aryton shunt are\n")
+printf("full scale deflection Im=%.4f A\n",Im)
+printf("meter resistance Rm=%.2f ohm\n",Rm)
+printf("R1=%.4f ohm\n",R1)
+printf("R2=%.4f ohm\n",R2)
+printf("R3=%.4f ohm\n",R3)
|