diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /278/CH11/EX11.10 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '278/CH11/EX11.10')
-rwxr-xr-x | 278/CH11/EX11.10/ex_11_10.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/278/CH11/EX11.10/ex_11_10.sce b/278/CH11/EX11.10/ex_11_10.sce new file mode 100755 index 000000000..b99cd939c --- /dev/null +++ b/278/CH11/EX11.10/ex_11_10.sce @@ -0,0 +1,17 @@ +//find size mild steel
+clc
+//solution
+//given
+p=0.84//N/mm^2
+ft=56//N/mm^2
+//ref fig 11.29
+//since pince is 350 mm,therfor area ia A
+A=350*350//mm^2
+P=A*p//N
+printf("the value of force acting is,%f N\n",P)
+//let dc be core diameter
+pi=3.14
+//P=(pi/4)*dc^2*ft//N
+dc=sqrt((P*4)/(pi*ft))
+printf("the value of dc is,%f mm\n",dc)
+printf("the standard value of core diametr is 49.177 mm fron T11.1")
\ No newline at end of file |