From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 629/CH14/EX14.12/ex14_12.txt | 3 +++ 629/CH14/EX14.12/example14_12.sce | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 629/CH14/EX14.12/ex14_12.txt create mode 100644 629/CH14/EX14.12/example14_12.sce (limited to '629/CH14/EX14.12') 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 -- cgit