summaryrefslogtreecommitdiff
path: root/2219/CH6/EX6.17/Ex6_17.sce
blob: 73dc7773e287e98f2a449863bdde063d919c66bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Chapter 6 example 17
//------------------------------------------------------------------------------
clc;
clear;
// Given data
p   = 0.1*10^-2;        // resistivity in ohm-m
t   = 100*10^-6;        // thickness in m
AR  = 10/1;             // aspect ratio

// Calculations
ps  = p/t
R   = ps*AR;            // Resistance in ohm

// Output
mprintf('Resistance = %d Ω',R);
//-----------------------------------------------------------------------------