diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3845/CH12/EX12.1 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3845/CH12/EX12.1')
-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
|