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 /629/CH3/EX3.9 | |
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 '629/CH3/EX3.9')
-rw-r--r-- | 629/CH3/EX3.9/ex3_9.txt | 2 | ||||
-rw-r--r-- | 629/CH3/EX3.9/example3_9.sce | 11 |
2 files changed, 13 insertions, 0 deletions
diff --git a/629/CH3/EX3.9/ex3_9.txt b/629/CH3/EX3.9/ex3_9.txt new file mode 100644 index 000000000..fd9f45811 --- /dev/null +++ b/629/CH3/EX3.9/ex3_9.txt @@ -0,0 +1,2 @@ +
+The force acting on one side of a concrete = 85.7 kN.
\ No newline at end of file diff --git a/629/CH3/EX3.9/example3_9.sce b/629/CH3/EX3.9/example3_9.sce new file mode 100644 index 000000000..bc474c6d2 --- /dev/null +++ b/629/CH3/EX3.9/example3_9.sce @@ -0,0 +1,11 @@ +clear
+clc
+//Example 3.9 HYDROSTATIC FORCE DUE TO CONCRETE
+z=2.44; //height[m]
+w=1.22; //width[m]
+A=z*w //area of panel[m^2]
+g_concrete=23.6; //specific weight of concrete[kN/m^3]
+z_cen=z/2 //depth of centroid[m]
+p=g_concrete*z_cen //pressure at the centroid level[kPa]
+F=p*A //force[kN]
+printf("\nThe force acting on one side of a concrete = %.1f kN.\n",F)
\ No newline at end of file |