summaryrefslogtreecommitdiff
path: root/1445/CH2/EX2.4/ch2_ex_4.sce
blob: 0a61e3642c2f6b1535bdce3e57ea7a6c1c946ce4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//CHAPTER 2- STEADY-STATE ANALYSIS OF SINGLE-PHASE A.C. CIRCUIT
//Example 4

disp("CHAPTER 2");
disp("EXAMPLE 4");

//VARIABLE INITIALIZATION
v_m=10;                        //peak value of voltage in Volts
angle=60*(%pi/180);            //delay angle in radians

//SOLUTION
v_av=(integrate('v_m*sin(x)','x',angle,%pi))/(%pi);
v_rms=(integrate('(v_m*sin(x))^2','x',angle,%pi))/(%pi);
v_rms=sqrt(v_rms);
disp(sprintf("Average value of full wave rectifier sine wave is %f V",v_av));
disp(sprintf("Effective value of full wave rectifier sine wave is %f V",v_rms));

//END