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 /1439/CH15/EX15.4/15_4.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 '1439/CH15/EX15.4/15_4.sce')
-rwxr-xr-x | 1439/CH15/EX15.4/15_4.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1439/CH15/EX15.4/15_4.sce b/1439/CH15/EX15.4/15_4.sce new file mode 100755 index 000000000..57a718ff5 --- /dev/null +++ b/1439/CH15/EX15.4/15_4.sce @@ -0,0 +1,15 @@ +clc
+//initialisation of variables
+M= 18 //gms
+k= 5.5*10^-8 //ohm^-1 cm^-1
+lc= 349.8 //cm^2 equiv^-1 ohm^-1
+la= 198 //cm^2 equiv^-1 ohm^-1
+//CALCULATIONS
+A= M*k
+A0= lc+la
+a= A/A0
+a1= 1000*a/M
+Kw= a1*a1
+//RESULTS
+printf ('degree of ionisation = %.1e ',a1)
+printf ('\n ion product of water = %.1e ',Kw)
|