summaryrefslogtreecommitdiff
path: root/3772/CH6/EX6.7/Ex6_7.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3772/CH6/EX6.7/Ex6_7.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3772/CH6/EX6.7/Ex6_7.sce')
-rw-r--r--3772/CH6/EX6.7/Ex6_7.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/3772/CH6/EX6.7/Ex6_7.sce b/3772/CH6/EX6.7/Ex6_7.sce
new file mode 100644
index 000000000..4e53cbaa6
--- /dev/null
+++ b/3772/CH6/EX6.7/Ex6_7.sce
@@ -0,0 +1,24 @@
+// Problem no 6.7,Page No.158
+
+clc;clear;
+close;
+
+L=5 //m //Length of beam
+w=40*10**3 //N //U.d.L
+y_max=0.01 //Deflection
+sigma_s=7*10**6 //Bending stress
+E=10.5*10**9
+
+//Calculation
+
+M=w*L*8**-1 //N*m //Max Bending moment
+
+//From equation of max deflection
+I=5*w*L**3*(y_max*384*E)**-1 //m**4
+
+d=sigma_s*2*I*M**-1*10**2 //cm
+b=12*I*((d*10**-2)**3)**-1*10**2 //cm //Breadth
+
+//Result
+printf("Minimum value of breadth is %.2f cm",b)
+printf("\n Minimum value of Depth is %.2f cm",d)