diff options
Diffstat (limited to '3872/CH11/EX11.1/Ex11_1.sce')
-rw-r--r-- | 3872/CH11/EX11.1/Ex11_1.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3872/CH11/EX11.1/Ex11_1.sce b/3872/CH11/EX11.1/Ex11_1.sce new file mode 100644 index 000000000..b734b6168 --- /dev/null +++ b/3872/CH11/EX11.1/Ex11_1.sce @@ -0,0 +1,21 @@ +//Book - Power system: Analysisi & Design 5th Edition
+//Authors - J. Duncan Glover, Mulukutla S. Sarma, and Thomas J.Overbye
+//Chapter-11 ;Example 11.1
+//Scilab Version - 6.0.0; OS - Windows
+
+clc;
+clear;
+
+f=60 //frequency of hydroelectric generating unit
+Pr=500 //rated power of hydroelectric generator
+V=5 //rated voltage of hrdroelectric generator
+p=32 //pole of hydroelectric generating unit
+H=2.0 //Inertia constant in per unit-seconds
+
+Wsyn=2*%pi*f //Synchronous electrical radian frequency in rad/s
+Wmsyn=(2/p)*Wsyn //synchronous angular velocity of the rotor in rad/s
+
+printf('The Synchronous electrical radian frequency is %.4f rad/s\n',Wsyn);
+printf('The synchronous angular velocity of the rotor is %.4f rad/s',Wmsyn);
+
+
|