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 /3456/CH5/EX5.1/Ex5_1.sce | |
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 '3456/CH5/EX5.1/Ex5_1.sce')
-rw-r--r-- | 3456/CH5/EX5.1/Ex5_1.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3456/CH5/EX5.1/Ex5_1.sce b/3456/CH5/EX5.1/Ex5_1.sce new file mode 100644 index 000000000..0146aabba --- /dev/null +++ b/3456/CH5/EX5.1/Ex5_1.sce @@ -0,0 +1,16 @@ +//Example 5.1
+//Forces Between Dislocations
+//Page No. 166
+clc;clear;close;
+
+G=40; //in GPa
+G=G*10^9; //conversion to N/m^2
+b=2.5; //in angstrong
+b=b*10^-10; //conversion to m
+r=1200; //in angstrong
+r=r*10^-10; //conversion to m
+l=0.04; //in mm
+l=l*10^-3; //conversion to m
+F=G*b^2/(2*%pi*r);
+Ft=F*l;
+printf('The Total force on the dislocation is = %g N',Ft);
|