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 /2858/CH3/EX3.6/Ex3_6.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 '2858/CH3/EX3.6/Ex3_6.sce')
-rwxr-xr-x | 2858/CH3/EX3.6/Ex3_6.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/2858/CH3/EX3.6/Ex3_6.sce b/2858/CH3/EX3.6/Ex3_6.sce new file mode 100755 index 000000000..0bc1a627f --- /dev/null +++ b/2858/CH3/EX3.6/Ex3_6.sce @@ -0,0 +1,22 @@ +//example 3.6
+clc; funcprot(0);
+Df=0.7;
+//from table
+Nq=18.4;
+Ny=22.4;
+q=12.6;
+phi=30; //angle
+L=1.5;
+Fyd=1;
+Gamma=18;
+L1=0.85*1.5;
+L2=0.21*1.5;
+B=1.5;
+A=1/2*(L1+L2)*B;
+B1=A/L1; //B'
+Fqs=1+B1/L1*tan(phi*%pi/180);
+Fys=1-0.4*B1/L1;
+Fqd=1+2*tan(phi*%pi/180)*(1-sin(phi*%pi/180))^2*Df/B;
+Qult=A*(q*Nq*Fqs*Fqd+1/2*Gamma*B1*Ny*Fys*Fyd);
+disp(Qult,"ultimate load in kN");
+
|