You are on page 1of 40

c 

clear all;
clc;
Z0=input('enter value of zero sequence impedance in P.U :');
Z1=input('enter value of positive sequence impedance in P.U :');
Z2=input('enter value of negative sequence impedance in P.U :');
Z = Z0+Z1+Z2; %equivalent_impedance
equivalent_impedance = j*Z;

% Z1+Z2+Z0 = 0.7j
% positive sequence generated voltage of reference phase 'a'

Ea=1+(j*0.0);

Ia1 = Ea/equivalent_impedance;
fprintf('The value of Ia1 is ');
disp(Ia1);
Ia2=Ia1 ;

% result for L-G fault(Ia2=Ia1=Ia0)

Ia0=Ia1;
Ia=Ia1+Ia2+Ia0; % fault current in P.U
fprintf('The value of Ia is ');
disp(Ia);
VA=input('enter value of apparent power in MVA:');
V=input('enter value of voltage in KV(line):');
I=(VA*1000)/(1.732*V); % base current
fprintf('The value of I(base current) is ');
disp(I);
fault_current =I*Ia; % Fault current in amperes

fprintf('The value of fault_current is ');


disp(fault_current);
Va1=Ea-(Ia1*j*Z1);
fprintf('The value of positive sequence voltage is: ');
disp(Va1);

%positive sequence voltage

Va2=-Ia2*j*Z2; %negative sequence voltage


fprintf('The value of negative sequence voltage is: ');
disp(Va2);
Va0=-Ia0*j*Z0; %zero sequence voltage
fprintf('The value of zero sequence voltage is: ');
disp(Va0);
lambda=-0.5+j*0.866; %Alpha operator
Vb1=(lambda^2)*Va1;
fprintf('The value of positive sequence voltage for phase b :');
disp(Vb1);
Vb2=lambda*Va2;
fprintf('The value of negative sequence voltage for phase b :');
disp(Vb2);
Vb0=Va0;
fprintf('The value of zero sequence voltage for phase b :');
disp(Vb0);
Vc0=Va0;
fprintf('The value of positive sequence voltage for phase b :');

disp(Vc0);
Vc1=lambda*Va1;
fprintf('The value of positive sequence voltage for phase c :');
disp(Vc1);
Vc2=(lambda^2)*Va2;
fprintf('The value of negative sequence voltage for phase c :');
disp(Vc2);
Vb=Vb1+Vb2+Vb0;
fprintf('The value of voltage for phase b :');
disp(Vb);
Vc=Vc1+Vc2+Vc0;
fprintf('The value of voltage for phase c :');
disp(Vc);
Va=0;
Vab=Va-Vb;
fprintf('The value of line voltage between a and b :');
disp(Vab);
Vac=Va-Vc;
fprintf('The value of line voltage between a and c :');
disp(Vac);
Vbc=Vb-Vc;
fprintf('The value of line voltage between b and c :');
disp(Vbc);

cc
clear all;
clc;
Z1=input('enter value of positive sequence impedance in P.U :');
Z2=input('enter value of negative sequence impedance in P.U :');
Z = Z1+Z2; %equivalent_impedance
equivalent_impedance = j*Z;
Ea=1+(j*0.0);

% Z1+Z2 =Z
% positive sequence generated voltage of reference phase 'a'

Ia1 = Ea/equivalent_impedance;
fprintf('The value of Ia1 is ');
disp(Ia1);
Ia2=-Ia1 ;

% result for LL-G fault

Ia=Ia1+Ia2; % fault current in P.U

fprintf('The value of Ia is ');


disp(Ia);
lambda=-0.5+j*0.866; %Alpha operator
Ib=(lambda^2)*Ia1+(lambda)*Ia2;
fprintf('The value of fault current in phase b:');
disp(Ib); %fault current in phase b in P.U
VA=input('enter value of apparent power in MVA:');
V=input('enter value of voltage in KV(line):');
I=(VA*1000)/(1.732*V); % base current
fprintf('The value of I(base current) is ');
disp(I);
fault_current =I*Ib; % Fault current in amperes
fprintf('The value of fault_current is ');
disp(fault_current);
Va1=Ea-(Ia1*j*Z1);
fprintf('The value of positive sequence voltage is: ');
disp(Va1);

%positive sequence voltage

Va2=-Ia2*j*Z2; %negative sequence voltage


fprintf('The value of negative sequence voltage is: ');
disp(Va2);
Va=Va1+Va2;
fprintf('The value of voltage in phase a is: ');
disp(Va);

Vb=(lambda^2)*Va1+(lambda)*Va2;
fprintf('The value of voltage in phase b is: ');
disp(Vb);
Vc=Vb; %result for LL fault
Vab=Va-Vb;
fprintf('The value of line voltage between a and b :');
disp(Vab);
Vac=Va-Vc;
fprintf('The value of line voltage between a and c :');
disp(Vac);
Vbc=Vb-Vc;
fprintf('The value of line voltage between b and c :');
disp(Vbc);
VAB=(Vab*V)/1.732;%Llne to line voltage at terminals of alternator
fprintf('The value of line voltage between a and b :');
disp(VAB);
VAC=(Vac*V)/1.732;%Llne to line voltage at terminals of alternator
fprintf('The value of line voltage between a and c :');
disp(VAC);
VBC=(Vbc*V)/1.732;%Llne to line voltage at terminals of alternator
fprintf('The value of line voltage between b and c :');
disp(VBC);

cc 
clear all;
clc;
Z0=input('enter value of zero sequence impedance in P.U :');
Z1=input('enter value of positive sequence impedance in P.U :');
Z2=input('enter value of negative sequence impedance in P.U :');
K=(Z0*Z2)/(Z0+Z2);
Z=K+Z1;

%equivalent_impedance
% Z1+Z2+Z0 = 0.7j

equivalent_impedance = j*Z;
Ea=1+(j*0.0);

% positive sequence generated voltage of reference phase 'a'

Ia1 = Ea/equivalent_impedance;
fprintf('The value of Ia1 is ');
disp(Ia1);

Va1=Ea-(Ia1*j*Z1);
fprintf('The value of positive sequence voltage is: ');
disp(Va1);

%positive sequence voltage

Va2=Va1;
Va0=Va1;
Ia2=-(Va2/Z2);

%negative sequence current

fprintf('The value of negative sequence current is: ');


disp(Va1);
Ia0=-(Va0/Z0);

%zero sequence current

fprintf('The value of zero sequence current is: ');


disp(Ia0);
Ia1=-(Ia2+Ia0);
fprintf('The value of positive sequence current is: ');
disp(Ia1);
Ia=3*Ia0;

%fault_current=Ib+Ic in P.U

VA=input('enter value of apparent power in MVA:');


V=input('enter value of voltage in KV(line):');
I=(VA*1000)/(1.732*V); % base current
fprintf('The value of I(base current) is ');
disp(I);
fault_current =I*Ia; % Fault current in amperes
fprintf('The value of fault_current is ');
disp(fault_current);
Va=Va1+Va2+Va0;
fprintf('The value of positive sequence voltage for phase a :');
disp(Va);
Vb=0;
Vc=0;
Vab=Va-Vb;
fprintf('The value of line voltage between a and b :');
disp(Vab);
Vac=Va-Vc;

fprintf('The value of line voltage between a and c :');


disp(Vac);
Vbc=Vb-Vc;
fprintf('The value of line voltage between b and c :');
disp(Vbc);



  
   
 

  

'  ( )

*     ' + , -

   ( )

*   

+,.  $$

+ ,/

  (0")

+  

  (0"1)

2  +  345" 1 /" # 6

/  (0"#)

3 4  /  

   (0")

/    

  (0"%)7+,.

8

6  (0"9)7+,.

68

  (0"&)7+,.



6  (0":)7+,.

6

6  (0";)7+,.

,   4 . 
  

6-  (0"$)7+,.

,-  4 . 
  

   

  8 

!!! "

!!! #$"

!!! %&

6  6 6

6  68 6

  

 3 4 

6  6

6 3 4 

8   (')

* 4  4  -

+  (')

34   4  -

.   (   1 <   )

/ + 

=   (   #)

6 + 

.    (.)

  /  

=    (=)

  6  

2  
  

 (2 >  %)

     

  ? ( ")
6  ? ( ")
*4    6
   0 
 5  0 
()  () @ /()A /(5)A(8("5)A4( ()  (5)) @
+("5)A ( ()  (5)))
6()  6() @ /()A /(5)A(8("5)A ( ()  (5))
+("5)A4( ()  (5)))



* 45  6  .  




 B & CC

 > 1

D  4 45    &     

  10 
  ( )  1
68  6( )@6( )
 68 B 6 ( )
/( )  /( ) @ $$
  68 > 6-( )
/( )  /( ) $$





*4 4    4  .


   
6  6 6
5  
6  ? ( =")
   0 
  ()  #
6(5")  6()
5  5@


  (10 )

,  E 6F

, 4 / 4 

G4
G H . .    


I 4  
    

G  ? (  "  )


   0(  )
  @
 5  0(  )
 5@
  
  0 
G("5)  G("5) @ /()A /( )A( 8(" )A ( ()
 ( )) @ +(" )A4( ()  ( )))

G("5)  G("5) /()J1A+(")

G("5)  /()A /( )A(8(" )A ( ()  ( ))
+(" )A4( ()  ( )))




G1 H . .    

G1  ? (  " =)
   0(  )
  @
 5  0 =

I 4  
  /

 =(5)
  
  0 
G1("5)  G1("5) @ /( )A(8(" )A4( ()  ( )) @
+(" )A ( ()  ( )))

G1("5)  G1("5) @ /()A8(")

G1("5)  /()A(8(" )A4( ()  ( )) @
+(" )A ( ()  ( )))




G# H . .   4 . 


I 4  
    

G#  ? ( ="  )


   0 =
  =()
 5  0(  )
 5@
  
  0 
G#("5)  G#("5) @ /()A /( )A(8(" )A4( ()  ( ))
@ +(" )A ( ()  ( )))

G#("5)  G#("5) /()J1A8(")


G#("5)  /()A /( )A( 8(" )A4( ()  ( ))


+(" )A ( ()  ( )))




G H . .   4 . 


I 4  
  /

G  ? ( =" =)


   0 =
  =()
 5  0 =
 =(5)
  
  0 
G("5)  G("5) @ /( )A(8(" )A ( ()  ( ))
+(" )A4( ()  ( )))

G("5)  G("5) /()A+(")

G("5)  /()A(8(" )A ( ()  ( ))
+(" )A4( ()  ( )))




G  EG G1 G# GF

G4 , -

K   .(G)A,

* 4  / 4 

2  K(0  )

*   /    

/  K( 0 )

*   /  ,   

L   3  / 4 
 (10 )  2 @  (10 )

/    

5  
   10 
  ()  #
/()  /(5) @ /()

/  ,   

5  5@



 

 @ 

2  -((,))

2  4 



( "/" "+,.)
  + 


*  


I 4  "  C 
 
 ()

 4  E 6  6  6F  


( "/" "+,.)

'  ( )

*  ' 

     ( )

8   

   ( )

8  

/  1 4 (/" )

* .       4  

H   :$7A 

+ /      H  

   (0")

   

   (0"1)

2   

    ()

  + 4 

  (0"&)



6  (0":)

6

I  ? ( " )


3I  ? ( " )
3  ? ( ")

+ *

I 4  

 'A/
  ( )
    ( )

 * 

   0 
  () =  ()
I("=)  (/() /(=))A'("=) '(" )  (" )
I(=")  I("=)

I   ( I)
I  ( I)
I    ( I)

 
 

   0 
  0 
  M
3I(" )  /()A4 I( I(" ))A+,.



3I   (3I)
I   (3I)
6I  (3I)

  
I  ? ( ")
   0 
  () =  ()
I()  3I("=) @ 3I(=")

I   (I)
=I  (I)

+ 


I 4  

   0 
 5  0 
3()  3() @ 4 I(/())A /(5)A'("5)A+,.



   (3)
6  (3)
  @
6  6@6

(NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
OOOOOOOOOOOOOOOOOON)
(N
N)
(N


  
  N)

(N
N)
(N< + <
<

(N< 
<
,P

<
<

<  
<N)

<


< H  <
,/ < N)

I 4 

,P

<

<

,/

<

8  

,P

<

,.

   0 
(N
N)
 (N#N" )  (N

:N" /())  (N

:N" H ())

 (N

:#N" ())  (N

:#N" 6())

 (N

:#N" ())  (N

:#N" 6())

 (N

:#N" ())  (N

:#N" 6())  (NQ N)


(N
N)
 (N 2 
:#N" (6))

N) (N

:#N" ())  (N

 (N

:#N" (@))  (N

 (N

:#N" ())  (N

:#N" (6@6))

:#N" (6))  (NQ N)

(N
N)
(NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
OOOOOOOOOOOOOOOOOON)

(N
N)
(N

 
    N)

(N
N)
(N<<2 <

 
<N)

<

< < 2 <

<

<

(N<+ <+<
,P
,P
<
,/ <N)

<

,/

< + < +<

,P

<

,/

<

   0 
  () =  ()
(N
N)
 (NN" )  (NN" =)  (N
 (N
:#N" 6I("=))

:#N" I("=))

 (N
N" =)  (NN" )  (N
:#N" 6I(="))
 (N
 (N

:#N" I())  (N

:#N" I(="))

:#N" =I())

 (NQ N)



(N
N)
 (N

2  

 (N :#N" (I))  (N


 (NQ N)

N)
:#N" (=I))

(N
N)
(NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
OOOOOOOOOOOOOON)

   4   * . 


E!*2F  !*21D(RD" 2R!2)
!*2 * -  -   " !*2   @ I+"    " + 

 

RD ,  
2R!2     

 4   4  1 4 ("  )
 4  A4(  ) @ IAA (  )

         

 4       ( )

<

 <

2

<

<

<

+71

<

<

+

KN 

< +

<



<



<



< 2 () <

    E

$$;#:

$$%;&

$$19

$$%$#

$11#$

$$19

$$9;;

$;&;&

$$1;

$$%:

$&9#1

$$&$

$$%9;%

$&#::

$$&#

<

$$9&$

$&$#

$$$9

$$##%

$$1

$$

&

$$

$1$;1

$$

$;&:

$$

$%%9:

$$

$;9;

$$

$1%1$1

$$

$;#1



$$;;:

$;:;$

$$

1

$11;

$1%%:

$$

#

$$99%

$#$1&

$$

&

$$

$&9%

$$

&

$$

$$$

$$

$

$$#:

$$:%$

$$



$1&

$1&$#:

$$

$



$$:1$%

$;1$&

$$

1

#

$11$;1

$;;::

$$

#



$&$;#

$#:$1

$$

 F

<

 <

2

<

<

<

+71

<

<

+

KN 

< +

<



<



<



< 2 () <

  #$  E

$$;1

$$%&%

$$19

$$%1

$9%1

$$1$

$$%&$

$&#&

$$:

$$#1

$$#&;

$$$1

$$&1

$;:#

$$1$;

$$%:

$&9#

$$:&

$$;

$$

$$$%

&

$$9$

$9$

$$$1

<

&

$$19&

$$:1$

$$$:%

$$1$

$$1$

$$$%

$$

$1$:$

$$

$;&:

$

$$

$%%9$

$$

$;9;



$$

$1$:$

$$

$

$$

$$$

$$

1

$$

$1%9$

$$

$;#1

1

#

$$

$$$

$$

1



$1#

$1%%;

$$

1

%

$$991

$#$

$$

1

9

$$;%

$;:&

$$



%

$11$

$;;&

$$

9

&

$$:1

$;1#

$$

%

:

$$&#

$1:%

$$

:

;

$$9#;

$1;1

$$

;

1$

$$#$

$$9:$

$$

$

1$

$$;#9

$1$;$

$$

$

&

$$#1

$$:%

$$

$

1

$$#:

$$&;

$$

$

11

$$&1&

$;;

$$

1

1#

$$9

$$1#9

$$

%

1#

$$$$

$1$1$

$$

11

1

$%$

$&;$

$$

1#

1

$#1$

$1&$$

$$

1

1%

$::%

$#1;1

$$

1%

19

$1%

$#:$$

$$

1%

1&

$$;#

$1$:&

$$

1:

1&

$$

$#;9$

$$

$;9:

1&

1;

$1;:

$%#

$$

1&

#$

$#1$1

$9$1&

$$

1;

#$

$1#;;

$%##

$$

1:

$$9#9

$1$$$

$$1

1:

$$9;

$$%;;

$$9%

 F

<

 <

<

+

  %&  E

2

<

<

<

+71

<

KN 

< +

<



<



<



< 2 () <

$$$:#

$$1:$

$$9%

$$1;:

$$:%$

$$$;

$$1

$$#99

$$;$

$$91%

$#1$

$$1;

$$#$

$:$

$$&

&

$$1$$

$$1$

$$#:

$$##;

$&#$

$$1#%

$$$;;

$$%$%

$$1&

$

$$#9;

$9&;

$$11$



$$1%:

$$::

$$$;

1

$$9:

$1;%$

$$#:9

#

$$:

$%:$

$$1$#

#



$$#1

$$#

$$$%%

#

%

$$19;

$$:9;

$$%

%

$$&:

$$;$

$$;

9

$$%

$1$9$

$$1&#

<

&

$$1#:

$$:$

$$#

%

$$91

$$%#$

$$1&1

:

$$

$%%%$

$$

$;&$

:

$$

$#$$

$$

$;&:

$$#$1

$$9

$$$91

&

$$#;

$$&1

$$$;&

$

1

$$1&&

$191

$$9



#

$$11#

$$&#1

$$$;

1

#

$$&:

$$%:$

$$#$1

1

9

$$:$

$$:#

$$$:

1

&

$$#;&

$&;$

$$1#:



%

$$&

$$%&

$$$&

:

;

$9$

$9:%$

$$

;

1$

$1:#$

$#$

$$

1

1$

$$

$&&9&

$$

$#

1

11

$$&#9

$&$

$$

11

1#

$$$;;

$$%1

$$

1#

1

$99$

$1%9$

$$$1

1

1%

$$

:1$

$$

1

1%

$$

1#$$

$$

1

19

$$

$$&#

$$

$#

19

1&

$9%$

$1%$

$$

1&

1:

$$9:

$$;%

$$

1:

1;

$$:

$$%:&

$$

&

1;

$$

$$9:

$$

$;9&

1%

#$

$#%$

$1$1$

$$

#$

#

$#19$

$;&$

$$

#

#1

$%$&$

$&%%$

$$

#1

##

$$#;1

$$#9$

$$

#

#1

$$

$;%#$

$$

$;&%

#

#%

$$%1$

$$&:$

$$$9

#%

#9

$$#$

$$%#&

$$$$:

#9

#&

$$1;$

$$#99

$$

#&

#:

$$9%

$$$;

$$$$

#&

#;

$$1#;

$$#&;

$$

#9

$

$$#$$

$$99

$$

11

#:

$$;1

$$1;%

$$





$$

$&;$

$$

$;%%



1

$1$&$

$#%1$

$$



#

$$

$1$

$$

#:



$$1:;

$$%:%

$$$$

%

%

$$

$$1

$$

$;%%



9

$$

$$&#%

$$

$;$$

9

&

$$1#$

$$9:$

$$$9

&

:

$$:1

$$1##

$$

:

;

$$:#

$1;$

$$$1

;

%$

$$:$

$1:$

$$

%$

%

$#:9

$11$$

$$

$

%

$$

$$&1

$$

$;#$

#

;

$$

$;$

$$

$:;%

1;

%1

$1

$:&$

$$

%1

%#

$$&91

$$;:

$$

%#

%

$:&:

$1#1$

$$

%

%%

$&#1

$119%

$$



#

$$

$%#$

$$

$;%:



%

$$91

$11

$$$1$

$

%9

$$

;%$

$$

$;%:

%9



$%%#$

$%;$

$$

%9

1

$11%

$#%$

$$

#;

%&

$$

#%%$

$$

$;:$

%&

%9

$&$

$19$$

$$

#:

;

$%$

$&&$

$$$%

#:

:

$$#1

$$:1

$$

%%

$$

$1$%

$$


 4 
4 
     
4 #$
     #$
4 %&
     %&


  

  +      

$;$F

 4     ( )

2 
 345 +
1 / +
# 6 +

<+ < 2 < / <   < 8 < 68 <  < 6 <

   E

$9$

$%

$

1

$$

$

$

&

6 < 6- <

$

1&

1&

$

%$

1#

;1

;$

$

&:

#;

$

&9

9

$

$&$

11

1

&%

1

$

$$

$$

$

$;$

&

$$

$$

1

$

1;%

99

$

$

$

;$

%:

$



$

#%

:

$

1

$

9

9

$

#

$

#%

%:

$



$

;

%$

$F

<+ < 2 < / <   < 8 < 68 <  < 6 <

 #$  E

$9

$#

$

%$$

$
1&

6 < 6- <

$

1&

$

%$

$

1

1

$

$9

&9

9

$

$

#&$

;1

;$

$

$

$

$$

$$

$

&

$

11:

$;

$

$

#&#

#$$

#$$

$

$

$

$$

$$

$

$

$

;$

%:

1$

$



$:1

91

$$

$$

1

1

$

1

&%

$

#

$&

$9

$$

$$

1



$

91

9

$

%

$

:1

1%

$

9

$

#%

:

$

&

$

;$

%:

$

:

$

#1

$;

$

;

$

;%

#

$

1$

$

11

$&

$

1

$

&%

1

$

11

$

$$

$$

$

1#

$

#1

9

$

1

$

#

:&

9&

$

1%

$

$$

$$

$

19

$

#%

1#

$

1&

$

$$

$$

$

1:

$

$$

$$

$


<

1;

$

1

$;

$

#$

$

$9

;

$ F

6 <

6-

<+ < 2 < / <   < 8 <

68 <  <

6 <

 %&  E
$$

$$

$$

$$

$$

$$

$$

$$

#$

::$

$$

$:

%$$

$;:%

$

1$

$$

$

9$$

$$$

$$

$$

$$

$$

$$

$$$

#$

$

$$

$$

$$

$;:$

&%$

1$

$$

$:

1%$

&

$$$

$$

$$

$$

$$

$$

$$%

%$$

11$ %$$

91

1$$$

$;:$

1$

19$

$$

11

;$

$

$$$

%$

1$

$$

$$

$$



$$$

$$

$$

$$

$$

$$

1

$%

#&&$

1$ #$$

1:%

%%$

#

$$$

:$

1#

$$

$$

$$



$$$

$%

%#

$$

$$

$$

&$

$$

$$

$$

:$

$$

$$

#$

$$

$$

%$$

$$

$$

%

$$$

11$

%$

$$

$$

$$

9

$$$

#$

#$

$$

$$

$$

&

$$$

1$

:$

$$

$$

$$

:

$$$

1&1

;:

$$

$$

$$

;

$$$

##

$9

$$

$$

$$

1$

$$$

1#

$

$$

$$

$$

1

$$$

$$

$$

$$

$$

$$

11

$$$

$$

$$

$$

$$

$$

1#

$$$

9#

1

$$

$$

$$

1

$$$

$$

$$

$$

$$

$$

1%

$$$

9#

#1

$$

$$

$$

19

$$$

$$

$$

$$

$$

$$

1&

$$$

;#

$%

$$

$$

$$

1:

$$$

9

1#

$$

$$

$$

1;

$$$

&$

19

$$

$$

$$

#$

$$$

#9

:

$$

$$

$$

#

$$$

%:

1;

$$

$$

$$

#1

$$$

9

$:

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

##

$$$

#:

;

$$

$$

$$

#

$$$

$$

$$

$$

$$

$$

#%

$$$

9$

#$

$$

$$

$$

#9

$$$

$$

$$

$$

$$

$$

#&

$$$

$$

$$

$$

$$

$$

#:

$$$

$

&$

$$

$$

$$

#;

$$$

$$

$$

$$

$$

$$

$

$$$

$$

$$

$$

$$

$$



$$$

9#

#$

$$

$$

$$

1

$$$

&



$$

$$

$$

#

$$$

1$

$

$$

$$

$$



$$$

1$

:

$$

$$

$$

%

$$$

$$

$$

$$

$$

$$

9

$$$

$$

$$

$$

$$

$$

&

$$$

1;&

9

$$

$$

$$

:

$$$

$$

$$

$$

$$

$$

;

$$$

:$

:%

$$

$$

$$

%$

$$$

1$

$%

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$

%

$$$

:$

%#

$$

$$

$$

%1

$$$

;

11

$$

$$

$$

%#

$$$

1$$

$$

$$

$$

$$

%

$$$





$$

$$

$$

%%

$$$

9:

#

$$

$$

$$

%9

$$$

&9

11

$$

$$

$$

%&

$$$

9&

1$

$$

$$

$$

$$

$$

$$

$$

$$

$$

$$F


 4 
4 
   
4 #$
   #$
4 %&
   %&


     4  

 4  '  ( )

  4 +   

   '

      ( )

*    

    (0")

   

    (0"1)

2   

    (0"#)

   4 " 

-    (0")

 4  4 " K

    (0"%)

8    4 " +71

    (0"9)

2    . 

?   @ A-

?  -

  7?

2   .   4   

  A

,5 +  

  -(-()"-( ))

   

    ()

   4 

'  ? ( " )

  '+

    D H  !  


 5  0 
'((5)" (5))  '((5)" (5)) (5)7(5)
'( (5)"(5))  '((5)" (5))


   H  !  


   0 
  0 
 ( )  
'(")  '(") @ ( )7(( )J1) @ ( )

  ( )  
'(")  '(") @ ( ) @ ( )



'
S   .(')

+   4 ,  +

  4 , -




  " +   4     345 

  ()

*   TT   ' +

    9()

*  T 9T    

   (0")

+  

   (0"1)

2  +  345" 1 /" # 6

/   (0"#)

  + /  

   (0")

  + /    

8 ,P   (0"%)

8"   
  I 4      

8 ,/   (0"9)

68"  4 . 
  I 4      

,P   (0"&)

"   
 H
   

,/   (0":)

6"  4 . 
 H
   

6   (0";)

,   4 . 
 

6-   (0"$)

,-  4 . 
 

  -()

2     

  8 ,P ,P

  8 "   
    

6  8 ,/ ,/

6  68 6"  4 . 
    

/ .  /
   

2  4 

    

      

 (   > $$$$$)

3  
 

   10 
.  $
 5  0 
  M 5
.  . @ ("5)A /(5)

/5 A '5



  ()  1

*   6  / 

6()  (4 I(/())A(. @ (")A/()))


 (6() > 6-()) << (6() B 6 ())

* 45   6

/  
 6() B 6 ()

P   .   
  

6()  6 ()




" .      

6()  6-()

 ()  #



 / " 4  /   6 

/()  (7("))A((() IA6())74 I(/()) .) *


+ /  
  ()  1  / + " /  ,       " 
  4  
/()  1 4 ((/ .())"   (/()))


       @ 

4     4 

   -(((/) (/ .)))

*4   4 

/ .  / / .   =   -    "


1 4 ((/ .())"   (/()))


!  
  7

 

  

2     

+ /    * - 

/  (/)

  + /  

   :$7A  (/)

/() 

  + /      H  

+     


 
 4      9()

    

<+ < 2 < / <   < 8 < 68 <  < 6 < 6 < 6- <

   E 

$%

$$

$

$%

$%

$%

$

$&

$9

$%

%

$

$$

$&

$&

$

$

$$

$&

$&

$

$

$$

$&

$&

$ F

 H   ' +   


 4        9()

<

 <

2

<

<

+

< +

<

     

<

<

<

+71 <

<

<

    E 

$$

$1$

$$1

$$%

$1$

$$1

$$:

$#$

$$#

$$%

$1%

$$#

$$%

$$

$$

$$

$#$

$$1

$$&

$1$

$$1%

$1

$19

$$1%

$$1

$$

$$

$1$

$$

$$

$$

$#$

$$#F

   4   * . 


 4   4  1 4 (")

     "       

 4  A4() @ IAA ()

 4    @ IA

     4  


 4    ()

  4 +   

   

      9() *  T  9T   H 


    (0")

   

    (0"1)

2   

    (0"#)

   4 " 

-    (0")

 4  4 " K

    (0"%)

8    4 " +71

?   @ A-

S  -

  7?

2   .   4   

  A

,5 +  

  -(-()"-( ))

   

 4    ()

   4 

  ? ( " )

  '+

    D H  !  


 50  4
((5)" (5))  (5)
( (5)"(5))  ((5)" (5))


   H  !  

 0 


 0  4
 ( )   < ( )  
(")  (") @ ( ) @ ( )






+   4 , -

?   .()

+

  4 , -

You might also like