summaryrefslogtreecommitdiff
path: root/Working_Examples/2777/CH4/EX4.2/Ex4_2.sce
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/2777/CH4/EX4.2/Ex4_2.sce')
-rwxr-xr-xWorking_Examples/2777/CH4/EX4.2/Ex4_2.sce33
1 files changed, 33 insertions, 0 deletions
diff --git a/Working_Examples/2777/CH4/EX4.2/Ex4_2.sce b/Working_Examples/2777/CH4/EX4.2/Ex4_2.sce
new file mode 100755
index 0000000..4b36006
--- /dev/null
+++ b/Working_Examples/2777/CH4/EX4.2/Ex4_2.sce
@@ -0,0 +1,33 @@
+
+// ELECTRICAL MACHINES
+// R.K.Srivastava
+// First Impression 2011
+// CENGAGE LEARNING INDIA PVT. LTD
+
+// CHAPTER : 4 : DIRECT CURRENT MACHINES
+
+// EXAMPLE : 4.2
+
+clear ; clc ; close ; // Clear the work space and console
+
+
+// GIVEN DATA
+
+p = 8; // Number of the poles in Dc machine
+a = 8; // Number of the Parallel path
+N = 500; // Rotation per minute in RPM
+phi = 0.095; // Average flux in air gap in Weber per meter
+Za = 1000; // Total number of the Conductor in Armature
+
+
+// CALCUALTIONS
+
+n = N/60; // Rotation (Revolution) per Second
+E = (p/a)*n*phi*Za; // EMF induced in Volts
+
+
+// DISPLAY RESULTS
+
+disp("EXAMPLE : 4.2 : SOLUTION :-") ;
+printf("\n (a) EMF induced , E = %.1f A \n ",E);
+