diff options
Diffstat (limited to '2858/CH8/EX8.2/Ex8_2.sce')
-rwxr-xr-x | 2858/CH8/EX8.2/Ex8_2.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2858/CH8/EX8.2/Ex8_2.sce b/2858/CH8/EX8.2/Ex8_2.sce new file mode 100755 index 000000000..5f728a887 --- /dev/null +++ b/2858/CH8/EX8.2/Ex8_2.sce @@ -0,0 +1,18 @@ +//example 8.2
+clc; funcprot(0);
+c=0.9;
+B=12.5;
+Gamma2=4;
+Fcd=1.138;
+Fqd=1.107;
+Nc=7.5;
+Nq=4;
+Ny=0;
+q=0.428;
+qtoe=2.44;
+qu=c*Nc*Fcd+q*Nq*Fqd+1/2*Gamma2*B*Ny;
+FSB=qu/qtoe;
+if FSB>3 then
+ printf("safe in bearing with FS=%.2f\n\n",FSB)
+end
+
|