summaryrefslogtreecommitdiff
path: root/1092/CH13/EX13.6
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.6
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.6')
-rwxr-xr-x1092/CH13/EX13.6/Example13_6.sce33
1 files changed, 33 insertions, 0 deletions
diff --git a/1092/CH13/EX13.6/Example13_6.sce b/1092/CH13/EX13.6/Example13_6.sce
new file mode 100755
index 000000000..75903fe46
--- /dev/null
+++ b/1092/CH13/EX13.6/Example13_6.sce
@@ -0,0 +1,33 @@
+// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 13: RATINGS,SELECTION,AND MAINTENANCE OF ELECTRIC MACHINERY
+// Example 13-6
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+P_o = 55 ; // Power rating of the WRIM in hp
+T_ambient = 40 ; // Standard ambient temperature recorded by the embedded
+// hot-spot detectors in degree celsius
+life_orig = 10 ; // Life in years of the motor (standard)
+
+// Calculated data from Ex.13-5b
+T_f = 172 ; // Approximate final hot-spot temperature in degree celsius
+
+// Calculations
+delta_T = T_f - 155 ; // Positive temperature difference betw the given
+// max hottest spot temperature of its insulation and the ambient temperature recorded.
+// 155 is chosen from table 13-1(class F insulation)
+
+R = 2 ^ (delta_T/10); // Life reduction factor
+
+Life_calc = life_orig / R ; // Reduced life expectancy of the motor in years
+
+// Display the results
+disp("Example 13-6 Solution : ");
+printf(" \n From Ex.13-5b,T_f = %d degree celsius\n",T_f);
+printf(" \n Life reduction factor : R = %.2f \n ",R );
+printf(" \n Reduced life expectancy of the motor : Life_calc = %.2f years",Life_calc);