diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3557/CH3/EX3.15 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3557/CH3/EX3.15')
-rw-r--r-- | 3557/CH3/EX3.15/Ex3_15.sce | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/3557/CH3/EX3.15/Ex3_15.sce b/3557/CH3/EX3.15/Ex3_15.sce new file mode 100644 index 000000000..767b9065f --- /dev/null +++ b/3557/CH3/EX3.15/Ex3_15.sce @@ -0,0 +1,32 @@ +//Example 3.15 (a)//
+rW=0.137;//nm //atomic radius of tungsten (From appendix 2)
+a=(4*rW)/(sqrt(3))//Body centered cubic
+mprintf("a = %f nm",a)
+l=sqrt(2)*a; // face diagonal length
+mprintf("\n l = %f nm",l)
+
+//The area of the (111) plane within yhe unit cell
+c=sqrt(3);//given
+d=2;//given
+h=(c/d)*l
+//mprintf("h = %f ",h)
+A=(1/2)*l*h
+mprintf("\nA = %f nm^2",A)
+c1=3;//atoms
+d1=1/6;//atoms
+ad=(c1*d1)/A
+mprintf("\nad = %f atoms/nm^2",ad)
+
+//(b)
+// Following the calculations of sample problem 3.14b we find that the length of the body diagonal is
+b=0.143;// atomic radius of Aluminium
+a1=(4*b)/(sqrt(2)) //Face centered cubic
+//mprintf("\n a1 = %f nm",a1)
+l1=sqrt(2)*a1;
+mprintf("\nl1 = %f nm",l1)
+//the area of the (111) plane within the unit cell is
+A1=(1/2)*l1*(c/d)*l1
+mprintf("\nA1 = %f nm^2",A1)
+e1=(1/2);//atoms
+ad2=((c1*d1)+(c1*e1))/A1
+mprintf("\nad2 %f atoms/nm^2",ad2)
|