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 /635/CH5/EX5.21/Ch05Ex21.sci | |
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 '635/CH5/EX5.21/Ch05Ex21.sci')
-rwxr-xr-x | 635/CH5/EX5.21/Ch05Ex21.sci | 8 |
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 |