The table shows the drag coefficient
cD
of a sphere as a function of Reynolds numberRe
. FindcD
atRe = 5, 50, 500, 5000
. Hint: use log–log scale.Re 0.2 2 20 200 2000 20000 cD 103 13.9 2.72 0.800 0.401 0.433
I don't understand how to "use log-log scale" to solve this problem. I tried the below codes but I don't know whether it is correct or not. How can I use the log-log scale here?
you can find original of question below link
r = [0.2, 2, 20 ,200, 2000 ,20000];
c = [103, 13.9, 2.72 ,0.800 ,0.401 ,0.433];
rI = [5,50,500,5000];
cI = spline (r,c, rI);