diff options
Diffstat (limited to '3845/CH12/EX12.3/Ex12_3.sce')
-rw-r--r-- | 3845/CH12/EX12.3/Ex12_3.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3845/CH12/EX12.3/Ex12_3.sce b/3845/CH12/EX12.3/Ex12_3.sce new file mode 100644 index 000000000..587b5c9f6 --- /dev/null +++ b/3845/CH12/EX12.3/Ex12_3.sce @@ -0,0 +1,15 @@ +//Example 12.3
+Q=5;//Flow rate (L/min)
+Q=Q/(10^3*60);//Flow rate (m^3/s)
+r1=10*10^-3;//Radius of aorta (m)
+A1=%pi*r1^2;//Cross-sectional area of aorta (m^2)
+v1=Q/A1;//Average speed of blood in the aorta (m/s)
+printf('a.Average speed of the blood in the aorta = %0.2f m/s',v1)
+n1=1;//Number of aorta
+r2=(8*10^-6)/2;//Radius of capillary (m)
+A2=%pi*r2^2;//Cross-sectional area of capillary (m^2)
+v2=0.33*10^-3;//Average speed of blood in the capillary (m/s)
+n2=(n1*A1*v1)/(A2*v2);//Number of capillaries
+printf('\nb.Number of capillaries = %0.1e',n2)
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|