summaryrefslogtreecommitdiff
path: root/629/CH14/EX14.12
diff options
context:
space:
mode:
Diffstat (limited to '629/CH14/EX14.12')
-rw-r--r--629/CH14/EX14.12/ex14_12.txt3
-rw-r--r--629/CH14/EX14.12/example14_12.sce9
2 files changed, 12 insertions, 0 deletions
diff --git a/629/CH14/EX14.12/ex14_12.txt b/629/CH14/EX14.12/ex14_12.txt
new file mode 100644
index 000000000..63fc78f65
--- /dev/null
+++ b/629/CH14/EX14.12/ex14_12.txt
@@ -0,0 +1,3 @@
+
+The minimum capture area of wind turbine = 8.20 m^2.
+ \ No newline at end of file
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