summaryrefslogtreecommitdiff
path: root/635/CH5/EX5.21/Ch05Ex21.sci
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /635/CH5/EX5.21/Ch05Ex21.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 '635/CH5/EX5.21/Ch05Ex21.sci')
-rwxr-xr-x635/CH5/EX5.21/Ch05Ex21.sci8
1 files changed, 8 insertions, 0 deletions
diff --git a/635/CH5/EX5.21/Ch05Ex21.sci b/635/CH5/EX5.21/Ch05Ex21.sci
new file mode 100755
index 000000000..5e92b2cb4
--- /dev/null
+++ b/635/CH5/EX5.21/Ch05Ex21.sci
@@ -0,0 +1,8 @@
+// Scilab Code Ex5.21 Determining tilt angle from dislocation spacing in the boundary of Cu: Page-188 (2010)
+a = 3.61e-010; // Lattice parameter of Cu, m
+b = a/sqrt(2); // Burger vector magnitude for fcc Cu, m
+h = 1.5e-06; // The vertical spacing between two neighbouring edge dislocations, m
+tan_theta = atand(b/h)*(%pi/180); // tangent of tilt angle between two tilt boundaries of Cu, radian
+printf("\nThe tilt angle between two tilt boundaries of Cu = %3.1e radian", theta);
+// Result
+// The tilt angle between two tilt boundaries of Cu = 1.7e-004 radian \ No newline at end of file