summaryrefslogtreecommitdiff
path: root/1898/CH6/EX6.11
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1898/CH6/EX6.11
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 '1898/CH6/EX6.11')
-rwxr-xr-x1898/CH6/EX6.11/Ex6_11.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/1898/CH6/EX6.11/Ex6_11.sce b/1898/CH6/EX6.11/Ex6_11.sce
new file mode 100755
index 000000000..195fd6560
--- /dev/null
+++ b/1898/CH6/EX6.11/Ex6_11.sce
@@ -0,0 +1,25 @@
+clear all; clc;
+
+disp("Scilab Code Ex 6.11 : ")
+
+//Given:
+l = 4.5; //m
+R1 = 1.5; //kN
+R2 = 3; //kN
+uvl = 2; //kN/m
+
+//Shear diagram:
+x = sqrt((2*R1*l)/(uvl));
+M = (R1*x) - (0.5*uvl*x^3)/(3*l);
+
+//Display:
+
+
+ printf('\n\nV becomes zero at x = %1.1fm',x);
+ printf('\nThe magnitude of the maximum moment = %1.1f kNm',M);
+
+//-----------------------------------------------------------------END--------------------------------------------------------------------------
+
+
+
+