summaryrefslogtreecommitdiff
path: root/1092/CH13/EX13.2/Example13_2.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1092/CH13/EX13.2/Example13_2.sce
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 '1092/CH13/EX13.2/Example13_2.sce')
-rwxr-xr-x1092/CH13/EX13.2/Example13_2.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/1092/CH13/EX13.2/Example13_2.sce b/1092/CH13/EX13.2/Example13_2.sce
new file mode 100755
index 000000000..3f962ee53
--- /dev/null
+++ b/1092/CH13/EX13.2/Example13_2.sce
@@ -0,0 +1,27 @@
+// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 13: RATINGS,SELECTION,AND MAINTENANCE OF ELECTRIC MACHINERY
+// Example 13-2
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+// MOTOR(class A insulation ) is operated for 6 hrs
+T = 75 ; // Temperature in degree celsius recorded by the embedded detectors
+life_orig = 10 ; // Life in years of the motor (standard)
+
+// Calculations
+delta_T = 105 - T ; // Positive temperature difference between the given
+// max hottest spot temperature of its insulation and the ambient temperature recorded.
+// 105 is chosen from table 13-1 (class A insulation)
+E = 2 ^ (delta_T/10); // Life extension factor
+
+Life_calc = life_orig * E ; // Increased life expectancy of the motor in years
+
+// Display the results
+disp("Example 13-2 Solution : ");
+printf(" \n Life extension factor : E = %d \n ",E );
+printf(" \n Increased life expectancy of the motor : Life_calc = %d years ",Life_calc);