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 /2216/CH9/EX9.3 | |
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 '2216/CH9/EX9.3')
-rwxr-xr-x | 2216/CH9/EX9.3/ex_9_3.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2216/CH9/EX9.3/ex_9_3.sce b/2216/CH9/EX9.3/ex_9_3.sce new file mode 100755 index 000000000..6ff3343f7 --- /dev/null +++ b/2216/CH9/EX9.3/ex_9_3.sce @@ -0,0 +1,20 @@ +//Example 9.3:change in refractive index ,net phase shiftand Vpi +clc; +clear; +close; +format('v',6) +v=5;//kV +l=1;//cm +ez=(v*10^3)/(l*10^-2);//in V/m +no=1.51;// +r63=10.5*10^-12;//m/V +dn=((1/2)*no^3*r63*ez);// +h=550;//nm +dfi=((2*%pi*dn*l*10^-2)/(h*10^-9));// +fi=2*dfi;// +vpi=((h*10^-9)/(2*no^3*r63))*10^-3;//kV +disp(dfi,"change in refrative index is") +disp(fi,"net phase shift is") +format('v',4) +disp(vpi,"Vpi in kV is") +//refractive index and phase shift is in the form of pi in the textbook |