summaryrefslogtreecommitdiff
path: root/3864/CH4/EX4.15/Ex4_15.sce
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3864/CH4/EX4.15/Ex4_15.sce
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-master.tar.gz
Scilab-TBC-Uploads-master.tar.bz2
Scilab-TBC-Uploads-master.zip
Added new codeHEADmaster
Diffstat (limited to '3864/CH4/EX4.15/Ex4_15.sce')
-rw-r--r--3864/CH4/EX4.15/Ex4_15.sce33
1 files changed, 33 insertions, 0 deletions
diff --git a/3864/CH4/EX4.15/Ex4_15.sce b/3864/CH4/EX4.15/Ex4_15.sce
new file mode 100644
index 000000000..6991385fa
--- /dev/null
+++ b/3864/CH4/EX4.15/Ex4_15.sce
@@ -0,0 +1,33 @@
+clear
+//
+
+//Initilization of Variables
+
+L=800 //mm //Span
+n=5 //number of leaves
+b=60 //mm //Width
+t=10 //mm //thickness
+sigma=250 //N/mm**2 //Stress
+
+//Calculations
+
+//section Modulus
+Z=n*6**-1*b*t**2 //mm**3
+
+//from the relation
+//sigma*Z=M ...................(1)
+//M=P*L*4**-1
+//sub values of M in equation 1 we get
+P=sigma*Z*4*L**-1*10**-3 //KN //Load
+
+//Length of Leaves
+L1=0.2*L //mm
+L2=0.4*L //mm
+L3=0.6*L //mm
+L4=0.8*L //mm
+L5=L //mm
+
+//Result
+printf("\n Max Load it can take is %0.2f KN",P)
+printf("\n Length of leaves:L1 %0.2f mm",L1)
+printf("\n :L2 %0.2f mm",L2)