diff options
Diffstat (limited to '3574/CH10/EX10.5/EX10_5.sce')
-rw-r--r-- | 3574/CH10/EX10.5/EX10_5.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3574/CH10/EX10.5/EX10_5.sce b/3574/CH10/EX10.5/EX10_5.sce new file mode 100644 index 000000000..8cb91c4da --- /dev/null +++ b/3574/CH10/EX10.5/EX10_5.sce @@ -0,0 +1,20 @@ +// Example 10.5
+// Computation of no-load speed
+// Page No. 408
+
+clc;
+clear;
+close;
+
+// Given data
+nrated=1750; // Rated speed
+SR=4; // Speed regulation
+
+// No-load speed
+
+Snl=nrated*(1+SR/100);
+
+// Display result on command window
+printf("\n No-load speed = %0.0f r/min ",Snl);
+
+
|