From 8ac15bc5efafa2afc053c293152605b0e6ae60ff Mon Sep 17 00:00:00 2001 From: Siddharth Agarwal Date: Tue, 3 Sep 2019 18:27:40 +0530 Subject: Xcos examples from textbooks and for blocks --- Working_Examples/2777/CH7/EX7.1/Ex7_1.sce | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 Working_Examples/2777/CH7/EX7.1/Ex7_1.sce (limited to 'Working_Examples/2777/CH7/EX7.1') diff --git a/Working_Examples/2777/CH7/EX7.1/Ex7_1.sce b/Working_Examples/2777/CH7/EX7.1/Ex7_1.sce new file mode 100755 index 0000000..afbd574 --- /dev/null +++ b/Working_Examples/2777/CH7/EX7.1/Ex7_1.sce @@ -0,0 +1,31 @@ + +// ELECTRICAL MACHINES +// R.K.Srivastava +// First Impression 2011 +// CENGAGE LEARNING INDIA PVT. LTD + +// CHAPTER : 7 : SPECIAL MOTORS AND INTRODUCTION TO GENERALIZED MACHINE THEORY + +// EXAMPLE : 7.1 + +clear ; clc ; close ; // Clear the work space and console + + +// GIVEN DATA + +D = 35*10^-2; // Outer diameter of the conducting disk in Meter +d = 10*10^-2; // Inner diameter of the conducting disk in Meter +B = 1.0; // Axial magnetic field in Telsa +N = 900; // Rotating shaft running in RPM + + +// CALCULATIONS + +Wr = (2*%pi*N)/60; // Rotational angular speed in radians/s +Er = ((D^2-d^2)*B*Wr)/8; // EMF induced in Volts + + +// DISPLAY RESULTS + +disp("EXAMPLE : 7.1: SOLUTION :-"); +printf("\n (a) Induced EMF in the outer and inner rims of the disk, Er = %.4f V \n",Er) -- cgit