summaryrefslogtreecommitdiff
path: root/278/CH11/EX11.3
diff options
context:
space:
mode:
Diffstat (limited to '278/CH11/EX11.3')
-rwxr-xr-x278/CH11/EX11.3/ex_11_3.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/278/CH11/EX11.3/ex_11_3.sce b/278/CH11/EX11.3/ex_11_3.sce
new file mode 100755
index 000000000..5e8591baf
--- /dev/null
+++ b/278/CH11/EX11.3/ex_11_3.sce
@@ -0,0 +1,14 @@
+//find nominal diameter of bolt
+clc
+//solution
+//given
+//ref fig 11.22
+P=60000//N
+ft=100//N/mm^2
+//let d nominal diameter and dc core dia
+//P=ft/A
+//A=(pi/4)*dc^2
+pi=3.14
+dc=sqrt(P*4/(pi*ft))
+printf("the value of dc is,%f mm\n",dc)
+printf("the nominal value of d is 33 mm fron T11.1") \ No newline at end of file