blob: 4e6746e233880e1dc738551bef316848e1094e8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
clear all; clc;
disp("Scilab Code Ex 4.13 : ")
//Given:
sigma_allow = 115; //MPa
//Determinng the stress concentration factor:
r_n =10/20;
w_h = 40/20;
k = 1.4; //from graph
sigma_avg = sigma_allow/k;
P =sigma_avg*20*10;
P = P/1000;
//Display:
printf("\n\nThe largest axial force that the bar can carry = %1.2f kN",P);
//------------------------------------------------------------------------------END---------------------------------------------------------------------
|