summaryrefslogtreecommitdiff
path: root/3411/CH3/EX3.2/Ex3_2.sce
blob: 8220c1a9fa422e47019313ac2e0846ab5f8794be (plain)
1
2
3
4
5
6
7
8
9
10
//Example 3_2
clc();
clear;
//To calculate the thickness of quarter wave plate
lamda=6000       //units in armstrongs
lamda=lamda*10^-10         //units in mts
n0=1.554
ne=1.544
d=(lamda)/(4*(n0-ne))         //units in mts
printf("Thickness of quarter wave plate is %.6fmts",d)