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/CH5/EX5.5 | |
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/CH5/EX5.5')
-rw-r--r-- | 3845/CH5/EX5.5/Ex5_5.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3845/CH5/EX5.5/Ex5_5.sce b/3845/CH5/EX5.5/Ex5_5.sce new file mode 100644 index 000000000..36949f4b0 --- /dev/null +++ b/3845/CH5/EX5.5/Ex5_5.sce @@ -0,0 +1,11 @@ +//Example 5.5
+S=80*10^9;//Shear modulus (N/m^2), See Table 5.3
+r=0.750*10^-3;//Radius of nail (m)
+A=%pi*r^2;//Cross-sectional area of nail (m^2)
+delta_x=1.8*10^-6;//Amount of flex (m)
+L_0=5*10^-3;//Original length (m)
+F=S*A*delta_x/L_0;//Weigth of the picture (N)
+m=F/g;//Picture's mass (kg)
+printf('Mass of the picture = %0.1f kg',m)
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|