diff options
Diffstat (limited to '3640/CH4/EX4.8/Ex4_8.sce')
-rw-r--r-- | 3640/CH4/EX4.8/Ex4_8.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3640/CH4/EX4.8/Ex4_8.sce b/3640/CH4/EX4.8/Ex4_8.sce new file mode 100644 index 000000000..fdd1ade9a --- /dev/null +++ b/3640/CH4/EX4.8/Ex4_8.sce @@ -0,0 +1,9 @@ +clc
+kVA=6.3 //upper limit for kVA per horsepower
+hp=10 //rating of induction motor in hp.(1 hp=746 watts)
+V=230 //voltage rating of the motor
+I=(kVA*hp*1000)/(sqrt(3)*V)
+mprintf("I=%fA\n",I)//ans may vary due to roundoff error
+
+
+
|