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/CH11/EX11.8/Ex11_8.sce | |
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/CH11/EX11.8/Ex11_8.sce')
-rw-r--r-- | 3845/CH11/EX11.8/Ex11_8.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3845/CH11/EX11.8/Ex11_8.sce b/3845/CH11/EX11.8/Ex11_8.sce new file mode 100644 index 000000000..b6e117260 --- /dev/null +++ b/3845/CH11/EX11.8/Ex11_8.sce @@ -0,0 +1,19 @@ +//Example 11.8
+m_st=1*10^7;//Mass of steel (kg)
+rho_st=7.8*10^3;//Density of steel (kg/m^3), See Table 11.1
+V_st=m_st/rho_st;//Volume of steel (m^3)
+rho_w=1*10^3;//Density of water (kg/m^3), See Table 11.1
+V_w=V_st;//Volume of water displaced (m^3)
+m_w=rho_w*V_w;//Mass of water displaced (kg)
+g=9.80;//Acceleration due to gravity (m/s^2)
+w_w=m_w*g;//Weight of water displaced (N)
+F_B=w_w;//Buoyant force (N)
+printf('a.Buoyant force = %0.1e N',F_B)
+
+V_w1=1*10^5;//Volume of water displaced
+m_w1=rho_w*V_w1;//Mass of water displaced (kg)
+w_w1=m_w1*g;//Weight of water displaced (N)
+F_B1=w_w1;//Buoyant force (N)
+printf('\nb.Buoyant force = %0.2e N',F_B1)
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|