blob: 15894b9f94d3be1706011cdc6b850cf3895eabdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clear;
clc;
Length=4 //in micro-m
Width=1 //in micro-m
R=1000 //in ohm
xj=1*10^-4 //junction depth in cm
//Calculation
N=Length/Width
R0=R/N
rho=R0*xj
mprintf("Sheet resistance= %i ohm\n",R0)
mprintf("average resistivity= %0.3f ohm-cm",rho)
|