diff options
Diffstat (limited to '3785/CH10/EX10.6/Ex10_6.sce')
-rw-r--r-- | 3785/CH10/EX10.6/Ex10_6.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3785/CH10/EX10.6/Ex10_6.sce b/3785/CH10/EX10.6/Ex10_6.sce new file mode 100644 index 000000000..476476205 --- /dev/null +++ b/3785/CH10/EX10.6/Ex10_6.sce @@ -0,0 +1,9 @@ +// Example 10_6
+clc;funcprot(0);
+// Given data
+C_Du=1.4;// Drag coefficient of the upwind facing cup
+C_Dd=0.4;// Drag coefficient of the downwind facing cup
+
+// Calculation
+omegaRbyV=sqrt((C_Du-C_Dd)/(C_Du+(4*C_Dd)));// The dimensionless angular speed
+printf("\nThe dimensionless angular speed at which the anemometer rotates is %0.4f.",omegaRbyV)
|