Question

Note: Course: Electromagnetics-2nd, Transmission Lines. Please help me solving this problem step-by- step. Thank you for your great time and support 4. For a lossless transmission line the normalized total impedance is given by, Z(T- with「(x) =「oe-j2da Similarly, the reflection coefficient can be expressed in terms of z(x) as, 「(z) = z(2)-1 z(a) +1 where the normalized impedance can be expressed as z(x) r(x) jx(x (a) Using Matlab, plot the real and imaginary components of「(x) for-oo < x < 00, for r=0, 0.25, 0.5, 1.0, 2.0, 4.0. (b) Repeat the above for 0 < r < 00, for x = 0,士0.25,士0.5, 1.0, 士2.0. ±4.0.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

1)% given z(x) = r(x) + i*X(x)

% T(x) = (z(x) - 1)/(z(x) + 1)
% Case 1 here r is a constant but X value changes
% Hence we will plot different graphs for real and imaginary
% values of T(x)
clear all;
clc;
close all;
r = [0 0.25 0.5 1.0 2.0 4.0];
X = -10:0.25:10;
for l=1:6
z(l,:) = r(l) +1i*X;
T(l,:) = (z(l,:) - 1)./(z(l,:)+1);
end
%%
% here we will be plotting all the graphs for different r
figure();
plot(X/10,imag(T(1,:)));title('Imaginary component of T(x)');xlabel('imag(T(x))');ylabel('X');
hold all;
plot(X/10,imag(T(2,:)))
hold all;
plot(X/10,imag(T(3,:)))
hold all;
plot(X/10,imag(T(4,:)))
hold all;
plot(X/10,imag(T(5,:)))
hold all;
plot(X/10,imag(T(6,:)));legend('r =0.0','r = 0.25','r = 0.5','r = 1.0','r = 2.0','r =4.0')

figure();
plot(X/10,real(T(1,:)));title('Real component of T(x)');xlabel('real(T(x))');ylabel('X');
hold all;
plot(X/10,real(T(2,:)))
hold all;
plot(X/10,real(T(3,:)))
hold all;
plot(X/10,real(T(4,:)))
hold all;
plot(X/10,real(T(5,:)))
hold all;
plot(X/10,real(T(6,:)));legend('r =0.0','r = 0.25','r = 0.5','r = 1.0','r = 2.0','r =4.0')

2)

% given z(x) = r(x) + i*X(x)

% T(x) = (z(x) - 1)/(z(x) + 1)
% Case 1 here r is a constant but X value changes
% Hence we will plot different graphs for real and imaginary
% values of T(x)
clear all;
clc;
close all;
X = [0 0.25 0.5 1.0 2.0 4.0 -0.25 -0.5 -1.0 -2.0 -4.0];
r = -10:0.25:10;
for l=1:11
z(l,:) = r +1i*X(l);
T(l,:) = (z(l,:) - 1)./(z(l,:)+1);
end
%%
% here we will be plotting all the graphs for different X
figure();

plot(r/10,imag(T(1,:)));title('Imaginary component of T(x)');xlabel('imag(T(x))');ylabel('X');
hold all;
for l = 2:10
plot(r/10,imag(T(l,:)))
hold all;
end
plot(r/11,imag(T(6,:)));legend('X =0.0','X = 0.25','X = 0.5','X = 1.0','X = 2.0','X =4.0','X = -0.25','X = -0.5','X = -1.0','X = -2.0','X = -4.0')
figure();
plot(r/10,real(T(1,:)));title('Real component of T(x)');xlabel('real(T(x))');ylabel('X');
hold all;
for l = 2:10
plot(r/10,real(T(l,:)))
hold all;
end
plot(r/11,real(T(6,:)));legend('X =0.0','X = 0.25','X = 0.5','X = 1.0','X = 2.0','X =4.0','X = -0.25','X = -0.5','X = -1.0','X = -2.0','X = -4.0')
%here the -ve and + ve values of x gives same real value of T

Add a comment
Know the answer?
Add Answer to:
Note: Course: Electromagnetics-2nd, Transmission Lines. Please help me solving this problem step-by- step. Thank you for...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • answer number 3 and 4 Problem 7. Transmission Lines The figure below shows a transmission line with a characteristic impedance Z,-50 Ω, connected to a single frequency generator with an internal i...

    answer number 3 and 4 Problem 7. Transmission Lines The figure below shows a transmission line with a characteristic impedance Z,-50 Ω, connected to a single frequency generator with an internal impedance R,-50 C (not shown), and terminated in a purely resistive load RL 50 2. At the frequency of the generator, the wavelength of the transmission line is λ = 2 m. At a distance dl-1.25 m away from the load, a shorted stub is connected via a tee....

  • Note: Course: Discrete-time Signal Processing. Please help me to solve this problem step-by-step process. And thank...

    Note: Course: Discrete-time Signal Processing. Please help me to solve this problem step-by-step process. And thank you for your great time and support. 6. For a LTI causal system, the difference equation is given as y[n] = x[n] + 0.75y[n-1]-0. 125y[n-2] Find H(z) Plot the zeroes and poles of H(z) and specify the ROC. Find y[n] for x[n]-o[n]. What kind of a system is this? High pass, Low pass, Band pass, etc.

  • Note: Course Name: Automatic Control Systems. Please help me to solve this problem step-by-step. And thank...

    Note: Course Name: Automatic Control Systems. Please help me to solve this problem step-by-step. And thank very much for your great support and time. 3. (10 points) Suppose the feedback system from problem #2 has a delay of Td seconds in reporting sensor data so that the feedback system is R(s + Y (s) G(s) Delay of Ts The frequency response of G(s) is repeated for convenience. If Td - 0, find the phase and gain margins. What is the...

  • Please solve the exercise 3.20 . Thank you for your help ! ⠀ Review. Let M...

    Please solve the exercise 3.20 . Thank you for your help ! ⠀ Review. Let M be a o-algebra on a set X and u be a measure on M. Furthermore, let PL(X, M) be the set of all nonnegative M-measurable functions. For f E PL(X, M), the lower unsigned Lebesgue integral is defined by f du sup dμ. O<<f geSL+(X,M) Here, SL+(X, M) stands the set of all step functions with nonnegative co- efficients. Especially, if f e Sl+(X,...

  • Please help with solving Question 1 (A-C) Thank you! Unless otherwise specified in the problem, you...

    Please help with solving Question 1 (A-C) Thank you! Unless otherwise specified in the problem, you may assume that all solutions are at 25°C. 1. 50.0 mL of a pH 6.00 carbonic acid buffer is titrated with 0.2857 M NaOH, requiring 17.47 mL to reach the second equivalence point. a. Calculate the molarity of carbonic acid and bicarbonate in the original buffer. Carbonic acid: Bicarbonate: b. Calculate the pH of the solution after a total of 100.0 mL of 0.2857...

  • Pease answer questions 4 and 5! Thank you so much! 4. Connect the 2nd resistor in...

    Pease answer questions 4 and 5! Thank you so much! 4. Connect the 2nd resistor in parallel with the 1st resistor and connect that combination to the battery.          Measure the following:               The current passing through the R1, I1 = ___0.0058____ A               The current passing through the R2, I2 = ___0.0031____ A               The current supplied by the battery, I = ___0.0092____ A              Calculate I1 + I2 = ____________ A                     Is the following statement true? I = I1 +...

  • Answer 4 & 5 please! thank you! R values = Resistor value, R1 = 990 Ohms...

    Answer 4 & 5 please! thank you! R values = Resistor value, R1 = 990 Ohms Resistor value, R2 = 2050 Ohms 4. Connect the 2nd resistor in parallel with the 1st resistor and connect that combination to the battery.          Measure the following:               The current passing through the R1, I1 = ___0.0058____ A               The current passing through the R2, I2 = ___0.0031____ A               The current supplied by the battery, I = ___0.0092____ A              Calculate I1 + I2 =...

  • Problem 1 The following table summarizes the results for all values of d. for a converging...

    Problem 1 The following table summarizes the results for all values of d. for a converging lens Case Type Direction Magnification S< do < 26 Real Inverted Enlarged d -2/ Real Inverted Same size de > 27 Real Inverted Reduced d. Virtual Upright Enlarged Sketch and find the image for each case shown in the table by changing the objects position Problem 2 0.25 p 0.23 P AI (b) Graded index (GRIN) rod lens is a glass rod whose refractive...

  • I have a quention for problem 5.16. You can refer problem 4.20, 4.41 to solve the...

    I have a quention for problem 5.16. You can refer problem 4.20, 4.41 to solve the 5.16. So I attached the information for the problem solving including some table of ASCR. But the problem is the last picture I attached. I don't know why 0.0969 (resistance) is have to divided by 3. Please give me very detailed and easy explation. The 500-kV, 60-Hz, three-phase line in Problems 4.20 and 4.41 has a 300-km length. Calculate: (a) Z (b) (y), and...

  • Based on the document below, 1. Describe the hypothesis Chaudhuri et al ids attempting to evaluate;...

    Based on the document below, 1. Describe the hypothesis Chaudhuri et al ids attempting to evaluate; in other words, what is the goal of this paper? Why is he writing it? 2. Does the data presented in the paper support the hypothesis stated in the introduction? Explain. 3.According to Chaudhuri, what is the potential role of thew alkaline phosphatase in the cleanup of industrial waste. CHAUDHURI et al: KINETIC BEHAVIOUR OF CALF INTESTINAL ALP WITH PNPP 8.5, 9, 9.5, 10,...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT