summaryrefslogtreecommitdiff
path: root/695/CH2/EX2.26
diff options
context:
space:
mode:
Diffstat (limited to '695/CH2/EX2.26')
-rwxr-xr-x695/CH2/EX2.26/Ex2_26.sce14
-rwxr-xr-x695/CH2/EX2.26/Ex2_26.txt14
-rwxr-xr-x695/CH2/EX2.26/R2_26.txt4
3 files changed, 32 insertions, 0 deletions
diff --git a/695/CH2/EX2.26/Ex2_26.sce b/695/CH2/EX2.26/Ex2_26.sce
new file mode 100755
index 000000000..fde6b4d64
--- /dev/null
+++ b/695/CH2/EX2.26/Ex2_26.sce
@@ -0,0 +1,14 @@
+//Caption:Determine the speed
+//Exa:2.26
+clc;
+clear;
+close;
+V=250;//in volts
+R_a=0.25;//in ohms
+I_a1=50;//in amperes
+I_a2=I_a1/0.9;//in amperes
+N_1=750;//in rpm
+E_1=V-(I_a1*R_a);//in volts
+E_2=V-(I_a2*R_a);//in volts
+N_2=int(E_2*N_1/(E_1*0.9));
+disp(N_2,'Speed (in rpm)='); \ No newline at end of file
diff --git a/695/CH2/EX2.26/Ex2_26.txt b/695/CH2/EX2.26/Ex2_26.txt
new file mode 100755
index 000000000..fde6b4d64
--- /dev/null
+++ b/695/CH2/EX2.26/Ex2_26.txt
@@ -0,0 +1,14 @@
+//Caption:Determine the speed
+//Exa:2.26
+clc;
+clear;
+close;
+V=250;//in volts
+R_a=0.25;//in ohms
+I_a1=50;//in amperes
+I_a2=I_a1/0.9;//in amperes
+N_1=750;//in rpm
+E_1=V-(I_a1*R_a);//in volts
+E_2=V-(I_a2*R_a);//in volts
+N_2=int(E_2*N_1/(E_1*0.9));
+disp(N_2,'Speed (in rpm)='); \ No newline at end of file
diff --git a/695/CH2/EX2.26/R2_26.txt b/695/CH2/EX2.26/R2_26.txt
new file mode 100755
index 000000000..54738ed58
--- /dev/null
+++ b/695/CH2/EX2.26/R2_26.txt
@@ -0,0 +1,4 @@
+
+ Speed (in rpm)=
+
+ 828. \ No newline at end of file