diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /539/CH6/EX6.2 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '539/CH6/EX6.2')
-rwxr-xr-x | 539/CH6/EX6.2/Example_6_2.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/539/CH6/EX6.2/Example_6_2.sce b/539/CH6/EX6.2/Example_6_2.sce new file mode 100755 index 000000000..b8bf8c031 --- /dev/null +++ b/539/CH6/EX6.2/Example_6_2.sce @@ -0,0 +1,25 @@ +//Computation of Load to Produce Specified Diameter Change
+
+clear;
+clc;
+
+printf("\tExample 6.2\n");
+
+del_d=-2.5*10^-3; //Deformation in dia in mm
+d0=10; //Initial dia in mm
+
+v=0.34; //Poisson ratio for brass
+
+ex=del_d/d0;
+printf("\nStrain in x-direction is %f",ex);
+
+ez=-ex/v;
+printf("\nStrain in z-direction is %f",ez);
+
+E=97*10^3; //Modulus of elasticity in MPa
+sigma=ez*E;
+F=sigma*%pi*(d0^2)/4;
+
+printf("\nApplied force is %d N",F);
+
+//End
\ No newline at end of file |