summaryrefslogtreecommitdiff
path: root/965/CH7/EX7.19/19.sci
diff options
context:
space:
mode:
Diffstat (limited to '965/CH7/EX7.19/19.sci')
-rw-r--r--965/CH7/EX7.19/19.sci22
1 files changed, 22 insertions, 0 deletions
diff --git a/965/CH7/EX7.19/19.sci b/965/CH7/EX7.19/19.sci
new file mode 100644
index 000000000..b2e0289e9
--- /dev/null
+++ b/965/CH7/EX7.19/19.sci
@@ -0,0 +1,22 @@
+clc;
+clear all;
+disp("skin friction coefficient")
+Ta=30;// degree C
+U=1.8;//m/s
+L=0.75;//m
+rho=1.165;// kg/m^3
+v=16*10^(-6);//m^2/s
+mu=6.717*10^(-6);//kg/hm
+Re=U*L/v;
+Cf=1.328/Re^0.5;
+disp(Cf,"Average skin friction Cf =")
+tau=0.5*rho*U^2*Cf;
+disp("N/m^2",tau,"Average shear stress Tau =")
+
+Cfx=0.664/Re^0.5;
+disp(Cfx," skin friction coefficient at the trailing edge, Cf =")
+taux=0.5*rho*U^2*Cfx;
+R=tau/taux;
+
+disp(R,"Ratio of average shear stress to the shear stress at the trailing edge R =")
+