summaryrefslogtreecommitdiff
path: root/2219/CH3/EX3.5/Ex3_5.sce
blob: e8f8bdabb71c353adfb44acc0b551e9c00dcfea6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Chapter 3 example 5
//------------------------------------------------------------------------------
clc;
clear;
// Given data
Zo      = 75;       // charecteristic impedance in ohm
Vref    = 100;      // reflected voltage
Pref    = 100;      // reflected power in watts

// Calculations
Zl      = (Vref)^2 /Pref         // load impedance
p       = (Zl - Zo)/(Zl + Zo);   // reflection co-efficient
Pinc    = Pref/p                 // incident power
Pobs    = Pinc - Pref            // power obsorbed

// Output
mprintf('Load Resistance = %d ohm\n Reflection Co-efficient = %3.3f\n incident power = %d watts\n power obsorbed = %d watts',Zl,p,Pinc,Pobs);
//------------------------------------------------------------------------------