blob: 83d04b2bd08904b50b9caaadb7594052dade1e4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//Example 6_16
clc;
clear;
close;
format('v',5);
//given data :
Vrms=230;//V
f=50;//Hz
Gamma=0:0.001:0.005;//Ripple factor(Gamma<=0.005)
IL=0.5;//A
Gamma=Gamma(4);//Taken for the solution
Vm=sqrt(2)*Vrms;//V
Vdc=Vm/%pi;//V
Idc=IL;//A
RL=Vdc/Idc;//ohm
C=1/(2*sqrt(3)*f*RL*Gamma)*1000;//mF
disp(C,"Value of capacitance(mF) : ");
//Answer in the textbook is not accurate.
|