summaryrefslogtreecommitdiff
path: root/2123/CH5/EX5.30/Exa_5_30.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2123/CH5/EX5.30/Exa_5_30.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 '2123/CH5/EX5.30/Exa_5_30.sce')
-rwxr-xr-x2123/CH5/EX5.30/Exa_5_30.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2123/CH5/EX5.30/Exa_5_30.sce b/2123/CH5/EX5.30/Exa_5_30.sce
new file mode 100755
index 000000000..7ceddf6b9
--- /dev/null
+++ b/2123/CH5/EX5.30/Exa_5_30.sce
@@ -0,0 +1,16 @@
+//Example No. 5.30
+clc;
+clear;
+close;
+format('v',9);
+
+//Given Data :
+V=230;//V
+N=870;//rpm
+Ia=100;//A
+Ra=0.05;//ohm
+T=400;//N-m
+E=V-Ia*Ra;//V
+Vgen=V+Ia*Ra;//V
+N2=N*Vgen/E;//rpm
+disp(N2,"Motor speed in rpm : ");