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 /1085/CH14/EX14.5/ex14_5.sce | |
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 '1085/CH14/EX14.5/ex14_5.sce')
-rwxr-xr-x | 1085/CH14/EX14.5/ex14_5.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1085/CH14/EX14.5/ex14_5.sce b/1085/CH14/EX14.5/ex14_5.sce new file mode 100755 index 000000000..118048dfe --- /dev/null +++ b/1085/CH14/EX14.5/ex14_5.sce @@ -0,0 +1,19 @@ +//Exam:14.5
+clc;
+clear;
+close;
+q=1.6*10^(-19);//charge (in C)
+d_1=0.06//shift of the titanium ion from the body centre (in Å)
+d_2=0.08//shift of the oxygen anions of the side faces (in Å)
+d_3=0.06//shift of the oxygen anions of the top and bottom face (in Å)
+D_1=d_1*10^(-10);//shift of the titanium ion from the body centre (in m)
+D_2=d_2*10^(-10);//shift of the oxygen anions of the side faces (in m)
+D_3=d_3*10^(-10);//shift of the oxygen anions of the top and bottom face (in m)
+U_1=4*q*D_1;//dipole moment due to two O2– ions on the four side faces(in C-m)
+U_2=2*q*D_2;//dipole moment due to one O2– on top and bottom(in C-m)
+U_3=4*q*D_3;//dipole moment due to one Ti4+ ion at body centre(in C-m)
+U=U_1+U_2+U_3;//Total dipole moment(in C-m)
+V=4.03*((3.98)^2)*10^(-30);//volume(in m3)
+P=U/V;//polarization the total dipole moments per unit volume
+disp(P,'polarization(in C/m^2)=');
+disp(U,'==')
\ No newline at end of file |