diff options
Diffstat (limited to '3159/CH16/EX16.5')
-rwxr-xr-x | 3159/CH16/EX16.5/Ex16_5.sce | 8 | ||||
-rwxr-xr-x | 3159/CH16/EX16.5/Ex16_5.txt | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/3159/CH16/EX16.5/Ex16_5.sce b/3159/CH16/EX16.5/Ex16_5.sce new file mode 100755 index 000000000..30a5c2e59 --- /dev/null +++ b/3159/CH16/EX16.5/Ex16_5.sce @@ -0,0 +1,8 @@ +// Calculation of eddy current loss at normal voltage and frequency
+clc
+Total1 = 2300 // total iron loss in W at 440 V and 50 Hz
+Total2 = 750 // total iron loss in W at 220 V and 25 Hz
+printf("\n Example 16.5")
+W_e = 1/2*(Total1-2*Total2)
+printf("\n Eddy current loss at normal voltage and frequency is %dW",4*W_e)
+
diff --git a/3159/CH16/EX16.5/Ex16_5.txt b/3159/CH16/EX16.5/Ex16_5.txt new file mode 100755 index 000000000..3632a3e6f --- /dev/null +++ b/3159/CH16/EX16.5/Ex16_5.txt @@ -0,0 +1,3 @@ +
+ Example 16.5
+ Eddy current loss at normal voltage and frequency is 1600W
\ No newline at end of file |