blob: d68c67574877e446cff2b54cdec9b7c3a11d777a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Chapter 2_Thick Film and Thin Film Hybrid ICs
//Caption : Capacitance
//Example2.6: Find out the capacitance of a thick film capacitor,if the dielectric constant Er=100,dielectric film thickness=25micrometer and area A=0.0625 cm square.
//Solution:
clear;
clc;
function c=capacitance(Er,A,t)
c=8.8*10^-12*Er*A/(10^-12*t)// capacitance value will be 2.2*10^-10 or 220pF, Eo:dielectric constant of free space=8.8*10^-12, Er: dielectric constant of thick film= 100(given), A:area of thick film=0.0626 cm square( or 0.0625*10^-4m square), t:thickness of the thick film= 25*10^-6m)
// capacitance=Eo*Er*A/t
disp('capacitance is=')// c=2.200D-10(=2.2*10^-10)F, include ";" at last at the time of calling the function
disp('pF',c)//pF:pico Farad
endfunction
//capacitance(100,0.0625*10^-4,25*10^-6);
|