summaryrefslogtreecommitdiff
path: root/3574/CH5/EX5.12/EX5_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '3574/CH5/EX5.12/EX5_12.sce')
-rw-r--r--3574/CH5/EX5.12/EX5_12.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3574/CH5/EX5.12/EX5_12.sce b/3574/CH5/EX5.12/EX5_12.sce
new file mode 100644
index 000000000..2899474fb
--- /dev/null
+++ b/3574/CH5/EX5.12/EX5_12.sce
@@ -0,0 +1,20 @@
+// Example 5.12
+// Determine the percent increase or decrease in rotor circuit resistance
+// Page No. 202
+
+clc;
+clear;
+close;
+
+// Given data
+
+Stdmax1=0.45; // Maximum torque condition 1
+Stdmax2=0.80; // Maximum torque condition 2
+
+// Percent increase or decrease in rotor circuit resistance
+
+PerCh=1/(Stdmax1/Stdmax2);
+PerCh=PerCh-1;
+
+// Display result on command window
+printf("\n Percent change in rotor circuit resistance = %0.0f Percent increase",PerCh*100);