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 /1367/CH3/EX3.5 | |
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 '1367/CH3/EX3.5')
-rwxr-xr-x | 1367/CH3/EX3.5/3_5.sce | 13 | ||||
-rwxr-xr-x | 1367/CH3/EX3.5/ex_3_5_r.txt | 9 |
2 files changed, 22 insertions, 0 deletions
diff --git a/1367/CH3/EX3.5/3_5.sce b/1367/CH3/EX3.5/3_5.sce new file mode 100755 index 000000000..46d28c1a8 --- /dev/null +++ b/1367/CH3/EX3.5/3_5.sce @@ -0,0 +1,13 @@ +//Find Dipole moment and Percentage ionic character
+//Ex:3.5
+clc;
+clear;
+close;
+d=0.9178;//molecular distance in angstorm
+d1=d*10^-10;//in m
+e=1.602*10^-19;//in C
+dm=e*d1;//dipole moment in fully ionic state in Cm
+disp(dm,"Dipole moment of HF in fully ionic state (in Cm) = ");
+dm_m=6.375*10^-30;//meaured dipole moment in Cm
+p=(dm_m*100)/dm;//Percentage ionic character
+disp(p,"Percentage ionic character");
diff --git a/1367/CH3/EX3.5/ex_3_5_r.txt b/1367/CH3/EX3.5/ex_3_5_r.txt new file mode 100755 index 000000000..80bee8b3d --- /dev/null +++ b/1367/CH3/EX3.5/ex_3_5_r.txt @@ -0,0 +1,9 @@ +
+ Dipole moment of HF in fully ionic state (in Cm) =
+
+ 1.470D-29
+
+ Percentage ionic character
+
+ 43.358038
+
\ No newline at end of file |