summaryrefslogtreecommitdiff
path: root/569/CH3/EX3.11/3_11.sci
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /569/CH3/EX3.11/3_11.sci
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '569/CH3/EX3.11/3_11.sci')
-rwxr-xr-x569/CH3/EX3.11/3_11.sci18
1 files changed, 18 insertions, 0 deletions
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