blob: fe0d0b0102de8e80734469e5f85ebead5ad99682 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clc
//
//
//
//Variable declaration
lambdaa=4000*10**-10 //Wavelength
mul=1.55821 //Refractive index of left landed
mur=1.55810 //Refractive index of right landed
t=2*10**-3 //thickness
//Calculations
orot=(180/%pi)*((2*3.14*(t*(mul-mur)))/lambdaa)
//Result
printf("\n The Amount of optical rotation produced is %3.0f degrees",orot)
|