summaryrefslogtreecommitdiff
path: root/3876/CH7/EX7.5/Ex7_5.sce
blob: 415e224441acaff542bddb9cd330d9336ba7f532 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//Chapter 7 Conductivity

clc;
clear;

//Initialisation of Variables
m= 0.01 //M
CB= 235 //mm
R= 426.3 //ohms
M= 265 
C= 0.448

//CALCULATIONS
k= M*C/(R*CB)
A= k*1000/m

//RESULTS
mprintf("Equivalent conductance= %.1f ohms",A)