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.16/Example7_16.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.16/Example7_16.sce')
-rwxr-xr-x | 1994/CH7/EX7.16/Example7_16.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1994/CH7/EX7.16/Example7_16.sce b/1994/CH7/EX7.16/Example7_16.sce new file mode 100755 index 000000000..19441424d --- /dev/null +++ b/1994/CH7/EX7.16/Example7_16.sce @@ -0,0 +1,18 @@ +//Chapter-7,Example7_16,pg 7-42
+Rsh=0.02
+R=1000
+Vm=500*10^-3
+Im=Vm/R
+Ish=Vm/Rsh
+printf("shunt current\n")
+printf("Ish=%.2f A\n",Ish)
+Ish1=10
+V=Ish1*Rsh
+R=V/Im
+printf("resistance for Ish=10A\n")
+printf("R=%.2f ohm\n",R)
+Ish2=75
+V=Ish2*Rsh
+R=V/Im
+printf("resistance for Ish=75A\n")
+printf("R=%.2f ohm\n",R)
|