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 /671/CH10/EX10.12/10_12.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 '671/CH10/EX10.12/10_12.sce')
-rwxr-xr-x | 671/CH10/EX10.12/10_12.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/671/CH10/EX10.12/10_12.sce b/671/CH10/EX10.12/10_12.sce new file mode 100755 index 000000000..02c6f7808 --- /dev/null +++ b/671/CH10/EX10.12/10_12.sce @@ -0,0 +1,15 @@ +V=600
+Ia=40
+R=0.5
+Ea=V-Ia*R
+n=500
+Ka=Ea/Ia/2/%pi/n*60
+T=Ka*Ia*Ia
+
+n2=450
+T=T*n2*n2/n/n
+Ia=sqrt(T/Ka)
+Ea=Ka*Ia*2*%pi*n2/60
+Rtotal=(V-Ea)/Ia
+Rext=Rtotal-R
+disp(Rext)
|