summaryrefslogtreecommitdiff
path: root/3876/CH7/EX7.4/Ex7_4.sce
blob: 6e81d9e4595e81743fb4a46f2dfa7b4b6a28f723 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Chapter 7 Conductivity

clc;
clear;

//Initialisation of Variables
L= 0.025 //ohms
k= 0.0112 //ohms

//CALCULATIONS
C= k/L

//RESULTS
mprintf("Cell constant= %.3f",C)