expt no1

5
Expt No: AIM: To plot frequency response of frequency selective network(Twin T Network) SOFTWARE: MATLAB Version 7.5.0.!" (#"007$) THEORY Two sy%%etric&l T networks connecte' in p&r&llel &re &s s own $elow. f t e re&ct&nces &n' t e resist&nces of t e &r%s &re properly c osen* t en t %&y $e use' to +ive ,ero output for & cert&in input &t & p&rticul&r frequency frequency is c&lle' N-LL frequency Using Z Parameters to Desri!e a T"o#Port Net"or$% T ere &re nu%erous %et o's &v&il&$le for &n&lytic&lly 'escri$in+ l ti%e inv&ri&nt electric&l networks. T ese inclu'e p&r&%eteri,&tion $y * /* (c &in %&tri4). An' p&r&%eters. T e network to $e &n&lyse' &n' constructe' t e &u'io frequency r&n+e ence t e cl&ssic&l p&pr%eters &re e&sy to %e&sur $e use'. Any of t e represent&tions c&n $e o$t&ine' $y &ppropri&te line&r tr& inclu'in+ t e (sctterrin+) p&r&%eters. Fig:A general Two- Port Network T e %&tri4 eqution for t e p&r&%eters is T e ,6s &re c&lle' t e open circuit i%pe'&nces* since typic&lly t e output or input p force' to ,ero (open circuite') to ev&lu&te t e p&r&%eter &s s own in equ&tions

Upload: contraster

Post on 03-Nov-2015

212 views

Category:

Documents


0 download

DESCRIPTION

experiment no 1

TRANSCRIPT

Expt No: AIM: To plot frequency response of frequency selective network(Twin T Network) SOFTWARE: MATLAB Version 7.5.0.342 (R2007b) THEORY Two symmetrical T networks connected in parallel are as shown below. If the reactances and the resistances of the arms are properly chosen, then this network may be used to give zero output for a certain input at a particular frequency and this frequency is called NULL frequency

Using Z Parameters to Describe a Two-Port Network. There are numerous methods available for analytically describing linear time invariant electrical networks. These include parameterization by Z, Y, H, G, ABCD (chain matrix). And S parameters. The network to be analysed and constructed will be in the audio frequency range hence the classical Z paprmeters are easy to measure and will be used. Any of the representations can be obtained by appropriate linear transformations, including the S (sctterring) parameters. Fig:A general Two- Port NetworkThe matrix eqution for the Z parameters is

The zs are called the open circuit impedances, since typically the output or input port current is forced to zero (open circuited) to evaluate the parameter as shown in equations

For a passive network like the Twin T, at most 3 of the four parameters are independent. The reciprocity theorem ststes that the transfer function of a passive network with the dimensions of impedances (or admittance) remains unchanged if the points of the excitation and response are interchanged. The theorem therefore demands that the transfer impedances z12 and z21 must be equal. Futhermore, if the network is symmetrical with respect to the input and output ports, as in the Twin T, z22 must equal z11.

Constructing a test circuitThis circuit can be constructed using readiy available components. The above analysis assumes ideal zero tolerance components and clearly the agreement between the analysis and measurements will be determined by the tolerance of the components. For best results, use good quality mylar or polystyrere capacitors. Ceramic capacitors with a high dielectric constant are non linear and should be avoided.

The frequency response (gain vs frequency) of a Twin T network is similar to that of aNotch Filter.

%TITLE:-To plot the frequency response selective network (Twin T or Wein bridge)%ROLL NO:-

%mfile

r=1000;% value of the resistancec=47e-9;%value of capacitancef=0:25:10000:%frequencyw=2*pi*f*j;a=[r*r*c*c 4*r*c 1];%quadratic equation in sa1=polyval(a,w);%Function to find the value of polynomial at wb=[r*r*c*c 0 1];b1=polyval(b,w);c=[4*r*c*c 4*c 0];c1=polyval(c,w);Z11=a1./c1;%i/p voltageZ21=b1./c1;%o/p voltageX21=Z21./Z11;%gainV=20*log10(abs(X21));%voltage gainPlot(f,v0;xlabel(frequency(Hz));ylabel(Voltage gain(db))

OUTPUT:-