blob: d205338d65325c9f0f01b4beaa79f7c1db511aed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
v1=120;
v2=6.3;
r=220;
disp("Part a");
vm=v2*sqrt(2);
vdc=2*vm/%pi;
disp("the dc voltage (in V) across the load is"); disp(vdc);
disp("Part b");
idc=vdc/r;
disp("the dc current (in mA) throught the load is");disp(idc *10^3);
disp("Part c");
pdc=vdc*idc;
disp("the dc power delivered (in W) to the load is"); disp(pdc);
disp("Part d");
disp("the P.I.V. of each diode is"); disp(vm);
|