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 /1061/CH10/EX10.1 | |
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 '1061/CH10/EX10.1')
-rwxr-xr-x | 1061/CH10/EX10.1/Ex10_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1061/CH10/EX10.1/Ex10_1.sce b/1061/CH10/EX10.1/Ex10_1.sce new file mode 100755 index 000000000..009b132d5 --- /dev/null +++ b/1061/CH10/EX10.1/Ex10_1.sce @@ -0,0 +1,11 @@ +//Ex:10.1
+clc;
+clear;
+close;
+r=30.8*10^-12;// electro optice coefficient in m/V
+L=3*10^-2;// length in m
+y=1.3*10^-6;// wavelength in m
+n=2.1;
+d=30*10^-6;// distance between the electrodes in m
+V=(y*d)/((n)^3*r*L);// voltage required to have a pi radian phase change in volt
+printf("The voltage required to have a pi radian phase change =%f volt", V);
\ No newline at end of file |