From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 569/CH3/EX3.11/3_11.sci | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 569/CH3/EX3.11/3_11.sci (limited to '569/CH3/EX3.11') diff --git a/569/CH3/EX3.11/3_11.sci b/569/CH3/EX3.11/3_11.sci new file mode 100755 index 000000000..fac3862b2 --- /dev/null +++ b/569/CH3/EX3.11/3_11.sci @@ -0,0 +1,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)=+/-') \ No newline at end of file -- cgit