diff options
Diffstat (limited to '273/CH8/EX8.3/ex8_3.sce')
-rwxr-xr-x | 273/CH8/EX8.3/ex8_3.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/273/CH8/EX8.3/ex8_3.sce b/273/CH8/EX8.3/ex8_3.sce new file mode 100755 index 000000000..fb29227e4 --- /dev/null +++ b/273/CH8/EX8.3/ex8_3.sce @@ -0,0 +1,13 @@ +clc;clear;
+//Example 8.3
+//calculation of birefringence
+
+//given values
+
+l=6*10^-7;//wavelength of light in metre
+d=3*10^-5;//thickness of crystal
+
+
+ //calculation
+ x=l/(4*d);
+disp(x,'the birefringance of the crystal is');
\ No newline at end of file |