summaryrefslogtreecommitdiff
path: root/1994/CH7/EX7.9/Example7_9.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1994/CH7/EX7.9/Example7_9.sce
downloadScilab-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.9/Example7_9.sce')
-rwxr-xr-x1994/CH7/EX7.9/Example7_9.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/1994/CH7/EX7.9/Example7_9.sce b/1994/CH7/EX7.9/Example7_9.sce
new file mode 100755
index 000000000..99c4f7ed5
--- /dev/null
+++ b/1994/CH7/EX7.9/Example7_9.sce
@@ -0,0 +1,20 @@
+//Chapter-7,Example7_9,pg 7-33
+Rm=50
+Im=2*10^-3
+//for position V4 multipler is R4
+V4=10
+R4=(V4/Im)-Rm//Rs=(V/Im)-RmV3 m
+//for position V3 multipler is R3+R4
+V3=50
+R3=(V3/Im)-Rm-R4
+//for position V2 multiplier is R2+R3+R4
+V2=100
+R2=(V2/Im)-Rm-R3-R4
+//for position V1 multiplier is R1+R2+R3+R4
+V1=500
+R1=(V1/Im)-Rm-R3-R4-R2
+printf("series string of multipliers\n")
+printf("R1=%.2f ohm\n",R1)
+printf("R2=%.2f ohm\n",R2)
+printf("R3=%.2f ohm\n",R3)
+printf("R4=%.2f ohm\n",R4)