blob: 2aa54e579405cac3740b3d8adbf1180f60ade6be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Example 6_13
clc;
clear;
close;
format('v',6);
//given data :
Vdc=30;//V
rf=25;//ohm
RL=500;//ohm
Idc=Vdc/RL;//A
Im=%pi*Idc;//A
Vi_max=Im^2*(rf+RL);//V
disp(Vi_max,"Voltage required at input(V) : ");
//Answer in the textbook is not accurate.
|