summaryrefslogtreecommitdiff
path: root/3574/CH5/EX5.7/EX5_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3574/CH5/EX5.7/EX5_7.sce')
-rw-r--r--3574/CH5/EX5.7/EX5_7.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/3574/CH5/EX5.7/EX5_7.sce b/3574/CH5/EX5.7/EX5_7.sce
new file mode 100644
index 000000000..81ebcf6cc
--- /dev/null
+++ b/3574/CH5/EX5.7/EX5_7.sce
@@ -0,0 +1,22 @@
+// Example 5.7
+// Determine expected locked-rotor line current
+// Page No. 192
+
+clc;
+clear;
+close;
+
+// Given data
+Ir1=151; // Rated current
+V1=230; // Rated voltage
+V2=220; // Motor starting voltage
+F1=60; // Rated frequency
+F2=50; // Motor starting frequency
+
+// Expected locked-rotor line current
+Ir2=Ir1*((V2/F2)/(V1/F1));
+
+// Display result on command window
+printf("\n Expected locked-rotor line current = %0.0f A ",Ir2);
+
+