diff options
Diffstat (limited to '3845/CH12/EX12.1/Ex12_1.sce')
-rw-r--r-- | 3845/CH12/EX12.1/Ex12_1.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3845/CH12/EX12.1/Ex12_1.sce b/3845/CH12/EX12.1/Ex12_1.sce new file mode 100644 index 000000000..50457b802 --- /dev/null +++ b/3845/CH12/EX12.1/Ex12_1.sce @@ -0,0 +1,9 @@ +//Example 12.1
+Q=5;//Flow rate (L/min)
+Q=Q/10^3;//Flow rate (m^3/min)
+t=75;//Time (y)
+t=t*(365*24*60);//Time (min)
+V=Q*t;//Volume (m^3)
+printf('Volume of blood pumped in 75 years = %0.1e m^3',V)
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|