summaryrefslogtreecommitdiff
path: root/Working_Examples/2777/CH4/EX4.8/Ex4_8.sce
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/2777/CH4/EX4.8/Ex4_8.sce')
-rwxr-xr-xWorking_Examples/2777/CH4/EX4.8/Ex4_8.sce33
1 files changed, 33 insertions, 0 deletions
diff --git a/Working_Examples/2777/CH4/EX4.8/Ex4_8.sce b/Working_Examples/2777/CH4/EX4.8/Ex4_8.sce
new file mode 100755
index 0000000..3ee5f34
--- /dev/null
+++ b/Working_Examples/2777/CH4/EX4.8/Ex4_8.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.8
+
+clear ; clc ; close ; // Clear the work space and console
+
+
+// GIVEN DATA
+
+N = 800; // Rotation speed of the Commutator in RPM
+D = 50; // Diameter in Centimeter
+BW = 1.5; // Brush Width in Centimeter
+
+
+// CALCULATIONS
+
+r = D/2; // Radius in Centimeter
+n = N/60; // Revoultion per second
+w = (2 * %pi)*n; // Angular velocity
+v = w*r; // Peripheral Speed in centimeter per second
+Tc = (BW/v)*1000; // Time of the Commutation in Second
+
+
+// DISPLAY RESULTS
+
+disp("EXAMPLE : 4.8 : SOLUTION :-") ;
+printf("\n (a) Time of the Commutation , Tc = %.4f ms \n",Tc);