diff options
Diffstat (limited to '629/CH14/EX14.12/example14_12.sce')
-rw-r--r-- | 629/CH14/EX14.12/example14_12.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/629/CH14/EX14.12/example14_12.sce b/629/CH14/EX14.12/example14_12.sce new file mode 100644 index 000000000..fd42e36fc --- /dev/null +++ b/629/CH14/EX14.12/example14_12.sce @@ -0,0 +1,9 @@ +clear
+clc
+//Example 14.12 CAPTURE AREA OF WIND TURBINE
+Pmax=5*100; //power produced by turbine[W]
+V=20*(1000/3600) //wind velocity [m/s]
+rho=1.2; //density [Kg/m^3]
+//Minimum capture area
+Amin=Pmax*(54/16)/(rho*V^3) //[m^2]
+printf("\nThe minimum capture area of wind turbine = %.2f m^2.\n",Amin)
\ No newline at end of file |