diff options
Diffstat (limited to '1439/CH13/EX13.2')
-rwxr-xr-x | 1439/CH13/EX13.2/13_2.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1439/CH13/EX13.2/13_2.sce b/1439/CH13/EX13.2/13_2.sce new file mode 100755 index 000000000..4ad6e9965 --- /dev/null +++ b/1439/CH13/EX13.2/13_2.sce @@ -0,0 +1,11 @@ +clc
+//initialisation of variables
+r= 82.4 //ohms
+k= 0.002768 //ohm^-1
+R1= 326 //ohm
+//CALCULATIONS
+K= r*k
+K1= (K/R1)
+//RESULTS
+printf ('cell constant= %.4f cm^-1',K)
+printf ('\n specific conductance= %.3e ohm^-1 cm^-1',K1)
|