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 --- 3456/CH5/EX5.1/Ex5_1.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 3456/CH5/EX5.1/Ex5_1.sce (limited to '3456/CH5/EX5.1') 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); -- cgit