blob: 1d3cb0b474c6788a7958b31b7e0b26336025cbad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Chapter 2_Thick Film and Thin Film Hybrid ICs
//Caption : Sheet Resistivity
//Example2.3: Calculate the sheet resistivity of a square of thick film resistor material with the following properties: bulk resistivity=10^-1ohm-cm and thick film thickness=10micrometer.
//Solution:
clear;
clc;
function Ps=myfunction4(p,t)// Ps:sheet resistance, p:bulk resistivity of thick film=10^-1(or 0.01), t:thickness of thick film=10micrometer(=10*10^-4=0.001)
Ps=p/t// since, sheet resistance of the film=bulk resistance of the film/thickness of the film
disp('sheet resistivity is=')// include ";" atat the time of calling the function
disp('ohm per square',Ps)
endfunction
//myfunction4(10^-1,10*10^-4);
|