summaryrefslogtreecommitdiff
path: root/1652/CH15
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1652/CH15
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1652/CH15')
-rwxr-xr-x1652/CH15/EX15.1/15_1.sce11
-rwxr-xr-x1652/CH15/EX15.2/15_2.sce16
-rwxr-xr-x1652/CH15/EX15.3/15_3.sce12
-rwxr-xr-x1652/CH15/EX15.4/15_4.sce8
-rwxr-xr-x1652/CH15/EX15.5/15_5.sce12
-rwxr-xr-x1652/CH15/EX15.6/15_6.sce8
-rwxr-xr-x1652/CH15/EX15.7/15_7.sce12
7 files changed, 79 insertions, 0 deletions
diff --git a/1652/CH15/EX15.1/15_1.sce b/1652/CH15/EX15.1/15_1.sce
new file mode 100755
index 000000000..3482943a1
--- /dev/null
+++ b/1652/CH15/EX15.1/15_1.sce
@@ -0,0 +1,11 @@
+clc
+//Initialization of variables
+I=0.5 //amp
+t=55 //min
+we=31.77
+//calculations
+Q=I*t*60
+n=Q/96496
+w=n*we
+//results
+printf("Weight of copper leaving = %.3f g",w)
diff --git a/1652/CH15/EX15.2/15_2.sce b/1652/CH15/EX15.2/15_2.sce
new file mode 100755
index 000000000..b3e64caec
--- /dev/null
+++ b/1652/CH15/EX15.2/15_2.sce
@@ -0,0 +1,16 @@
+clc
+//Initialization of variables
+w1=0.7532 //g
+w2=0.9972 //g
+wdep=0.4 //g
+we=31.77 //g
+//calculations
+dn=w2/we - w1/we
+t=dn/(wdep/we)
+dne=wdep/we
+dnmig=dn-dne
+tplus=-dnmig/dne
+tminus=1-tplus
+//results
+printf("tplus = %.3f",tplus)
+printf("\n tminus= %.3f",tminus)
diff --git a/1652/CH15/EX15.3/15_3.sce b/1652/CH15/EX15.3/15_3.sce
new file mode 100755
index 000000000..1b5de5bd4
--- /dev/null
+++ b/1652/CH15/EX15.3/15_3.sce
@@ -0,0 +1,12 @@
+clc
+//Initialization of variables
+R1=312 //ohms
+R2=1043 //ohms
+c=0.01 //N
+kdash=0.002768 //ohm^-1cm^-1
+//calculations
+k=kdash*R1
+kdash2=k/R2
+lambda=kdash2/(c/1000)
+//results
+printf("Equivalent conductance = %.1f ohm^-1 cm^2 equiv^-1",lambda)
diff --git a/1652/CH15/EX15.4/15_4.sce b/1652/CH15/EX15.4/15_4.sce
new file mode 100755
index 000000000..76d7f9bf9
--- /dev/null
+++ b/1652/CH15/EX15.4/15_4.sce
@@ -0,0 +1,8 @@
+clc
+//Initialization of variables
+l1=349.8
+l2=40.9
+//calculations
+l=l1+l2
+//results
+printf("Conductance for acetic acid = %.1f ohm^-1 cm^2",l)
diff --git a/1652/CH15/EX15.5/15_5.sce b/1652/CH15/EX15.5/15_5.sce
new file mode 100755
index 000000000..6b5dc73a2
--- /dev/null
+++ b/1652/CH15/EX15.5/15_5.sce
@@ -0,0 +1,12 @@
+clc
+//Initialization of variables
+l1=63.6
+l2=79.8
+n=1 //mg/lt
+we=116.7 //g/equiv
+//calculations
+l=l1+l2
+c=n*10^-3 /we
+k=c*l/1000
+//results
+printf("Specific conductance = %.2e ohm^-1 cm^-1",k)
diff --git a/1652/CH15/EX15.6/15_6.sce b/1652/CH15/EX15.6/15_6.sce
new file mode 100755
index 000000000..f752ca0a1
--- /dev/null
+++ b/1652/CH15/EX15.6/15_6.sce
@@ -0,0 +1,8 @@
+clc
+//Initialization of variables
+e1=0.763 //volt
+e2=0.337 //volt
+//calculations
+e0=e1+e2
+//results
+printf("Standard electrode potential of the cell = %.3f volts",e0)
diff --git a/1652/CH15/EX15.7/15_7.sce b/1652/CH15/EX15.7/15_7.sce
new file mode 100755
index 000000000..d21aae072
--- /dev/null
+++ b/1652/CH15/EX15.7/15_7.sce
@@ -0,0 +1,12 @@
+clc
+//Initialization of variables
+aZn=0.1
+aCu=0.01
+e1=0.763 //volt
+e2=0.337 //volt
+//calculations
+e0=e1+e2
+Q=aZn/aCu
+E=e0- 0.05915*log10(Q) /2
+//results
+printf("Emf of the cell = %.3f volts",E)