summaryrefslogtreecommitdiff
path: root/695/CH2/EX2.20
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /695/CH2/EX2.20
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 '695/CH2/EX2.20')
-rwxr-xr-x695/CH2/EX2.20/Ex2_20.sce14
-rwxr-xr-x695/CH2/EX2.20/Ex2_20.txt14
-rwxr-xr-x695/CH2/EX2.20/R2_20.txt4
3 files changed, 32 insertions, 0 deletions
diff --git a/695/CH2/EX2.20/Ex2_20.sce b/695/CH2/EX2.20/Ex2_20.sce
new file mode 100755
index 000000000..c5685f89d
--- /dev/null
+++ b/695/CH2/EX2.20/Ex2_20.sce
@@ -0,0 +1,14 @@
+//Caption:Find the no load speed
+//Exa:2.20
+clc;
+clear;
+close;
+V=200;//in volts
+I_a0=2;//in amperes
+R_a=0.4;//in ohms
+I_a1=50;//in amperes
+N_1=1200;//in rpm
+E_0=V-(I_a0*R_a);//in volts
+E_1=V-(I_a1*R_a);//in volts
+N_0=N_1*(E_0/E_1);//in rpm
+disp(N_0,'No-load speed (in rpm)=') \ No newline at end of file
diff --git a/695/CH2/EX2.20/Ex2_20.txt b/695/CH2/EX2.20/Ex2_20.txt
new file mode 100755
index 000000000..c5685f89d
--- /dev/null
+++ b/695/CH2/EX2.20/Ex2_20.txt
@@ -0,0 +1,14 @@
+//Caption:Find the no load speed
+//Exa:2.20
+clc;
+clear;
+close;
+V=200;//in volts
+I_a0=2;//in amperes
+R_a=0.4;//in ohms
+I_a1=50;//in amperes
+N_1=1200;//in rpm
+E_0=V-(I_a0*R_a);//in volts
+E_1=V-(I_a1*R_a);//in volts
+N_0=N_1*(E_0/E_1);//in rpm
+disp(N_0,'No-load speed (in rpm)=') \ No newline at end of file
diff --git a/695/CH2/EX2.20/R2_20.txt b/695/CH2/EX2.20/R2_20.txt
new file mode 100755
index 000000000..23476718d
--- /dev/null
+++ b/695/CH2/EX2.20/R2_20.txt
@@ -0,0 +1,4 @@
+ NO-load speed (in rpm)=
+
+ 1328.
+ \ No newline at end of file