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 /3289/CH4/EX4.4/Ex4_4.sce | |
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 '3289/CH4/EX4.4/Ex4_4.sce')
-rwxr-xr-x | 3289/CH4/EX4.4/Ex4_4.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3289/CH4/EX4.4/Ex4_4.sce b/3289/CH4/EX4.4/Ex4_4.sce new file mode 100755 index 000000000..0df8e6719 --- /dev/null +++ b/3289/CH4/EX4.4/Ex4_4.sce @@ -0,0 +1,22 @@ +clc
+
+a=0.05 // m
+Fm=90 //kN
+sigmacr=210 // MPa
+sigmayp=280 // MPa
+
+//sigmaa=Ma*c/I equation 1
+//Ma=0.025*Fa
+c=0.025
+I=(a^4)/12
+disp(I)
+//sigmaa=((0.025*Fa)*c)/I substituting the values
+
+
+//sigmam=Fm/A equation 2
+sigmam=Fm/(a*a)
+disp(sigmam,"in kilo Pa is= ")
+
+//(((1200*Fa)/sigmacr)+(sigmam/sigmayp))=1
+Fa=(1-(sigmam/sigmayp))*(sigmacr/1200)
+disp(Fa,"load Fa in N is= ") //wrong ans in textbook
|