summaryrefslogtreecommitdiff
path: root/2744/CH9/EX9.5
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2744/CH9/EX9.5
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2744/CH9/EX9.5')
-rwxr-xr-x2744/CH9/EX9.5/Ex9_5.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2744/CH9/EX9.5/Ex9_5.sce b/2744/CH9/EX9.5/Ex9_5.sce
new file mode 100755
index 000000000..771ec4fa0
--- /dev/null
+++ b/2744/CH9/EX9.5/Ex9_5.sce
@@ -0,0 +1,14 @@
+clear;
+clc;
+l = 5;// feet
+b = 5/2;// inches
+d = 5/2;// inches
+h = 1/4;// inches
+n = 3;// factor of safety
+A = 1.19;// in^2
+k = 0.49;// minimum radius of gyration
+f_c = 21;// lb/in^2
+a = 1/7500;
+P = f_c*A/(1+(a/2)*((l*12)^2)/k^2);// tons
+P_safe = P/n;// tons
+printf('The safe axial load = %.2f tons',P_safe);