FA18-EEE-081 Microwave Lab 01
FA18-EEE-081 Microwave Lab 01
FA18-EEE-081 Microwave Lab 01
Lab Report # 01
Class: EEE-7B
Date: 04-10-2021
Statement:
Literature Background:
Travelling Wave:
To Calculation
1. Calculate the peak voltage
i.e. V p= √ 2 × P .
2. Calculate the frequency in radian ‘Ꞷ’ and wave number ‘β’.
3. Plot the wave in time domain at z = 0, using the equation of
Procedure
Code:
clear all
close all
clc
t=0:0.1:100;
f=1e9;
L=3e8/3e9;
fs=20*f;
ts=t/fs;
W=2*pi*f;
B=2*pi/L;
z=0;
v=4.5*cos(W*ts-B*z);
plot(ts,v)
figure;
z=0.15;
v=4.5*cos(W*ts-B*z);
plot(ts,v)
figure
z=0.17;
v=4.5*cos(W*ts-B*z);
plot(ts,v)
figure
z=0.19;
v=4.5*cos(W*ts-B*z);
plot(ts,v)
Analysis of Graphs
Graph 1
Graph 2&3
Graph 4:
Conclusion:
Questions
Conclusion:
By studying the traveling wave and it’s behavior we concluded that if we
change the value of “z”, the wave will also vary.