diff options
Diffstat (limited to '1445/CH2/EX2.3/ch2_ex_3.sce')
-rw-r--r-- | 1445/CH2/EX2.3/ch2_ex_3.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1445/CH2/EX2.3/ch2_ex_3.sce b/1445/CH2/EX2.3/ch2_ex_3.sce new file mode 100644 index 000000000..21882fc33 --- /dev/null +++ b/1445/CH2/EX2.3/ch2_ex_3.sce @@ -0,0 +1,17 @@ +//CHAPTER 2- STEADY-STATE ANALYSIS OF SINGLE-PHASE A.C. CIRCUIT +//Example 3 + +disp("CHAPTER 2"); +disp("EXAMPLE 3"); + +//VARIABLE INITIALIZATION +v_m=5; //peak value of voltage in Volts + +//SOLUTION +v_av=(integrate('v_m*sin(x)','x',0,%pi))/(%pi); +v_rms=(integrate('(v_m*sin(x))^2','x',0,%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 |