summaryrefslogtreecommitdiff
path: root/569/CH3/EX3.11/3_11.sci
blob: fac3862b2adf2dac2abc62785cec1b42faec1247 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Calculate the magnitude of Force and limiting error
clc;
E=200*10^9;
L=25*10^-3;
b=4.75*10^-3;
d=0.9*10^-3;
I=(b*d^3)/12;
x=2.5*10^-3;
F=(3*E*I*x)/(L^3);
disp(F,'Magnitude of Force (N)=')
dE_pu=0/E; // per unit error in E
db_pu=0.0075/b; 
dd_pu=0.0075/d;  
dx_pu=0.025/x; 
dL_pu=0.025/L;
dF_pu= (dE_pu+db_pu+3*dd_pu+dx_pu+3*dL_pu)*10^-3;

disp(dF_pu,'limiting error in force (N)=+/-')