summaryrefslogtreecommitdiff
path: root/3862/CH10/EX10.11/Ex10_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3862/CH10/EX10.11/Ex10_11.sce')
-rw-r--r--3862/CH10/EX10.11/Ex10_11.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3862/CH10/EX10.11/Ex10_11.sce b/3862/CH10/EX10.11/Ex10_11.sce
new file mode 100644
index 000000000..4b994d624
--- /dev/null
+++ b/3862/CH10/EX10.11/Ex10_11.sce
@@ -0,0 +1,15 @@
+clear
+//
+
+//variable declaration
+
+// Let the diameter of the bar be ā€˜dā€™. Now, W = 800 N L = 1 m = 1000 mm
+L=1000
+W=800
+M=W*L/4 //Maximum moment,N-mm
+f=150 //permissible stress,N/mm^2
+
+d=((((M*32)/(%pi*f)))**(0.33))
+
+printf("\n d= %0.2f mm",d)
+printf("\n select 25mm bar ")