diff options
Diffstat (limited to '1445/CH2/EX2.9/ch2_ex_9.sce')
-rw-r--r-- | 1445/CH2/EX2.9/ch2_ex_9.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1445/CH2/EX2.9/ch2_ex_9.sce b/1445/CH2/EX2.9/ch2_ex_9.sce new file mode 100644 index 000000000..8e68bc680 --- /dev/null +++ b/1445/CH2/EX2.9/ch2_ex_9.sce @@ -0,0 +1,19 @@ +//CHAPTER 2- STEADY-STATE ANALYSIS OF SINGLE-PHASE A.C. CIRCUIT +//Example 9 + +disp("CHAPTER 2"); +disp("EXAMPLE 9"); + +//VARIABLE INITIALIZATION +v1=120; //voltage of lamp in Volts +p=100; //in Watts +v2=220; //supply voltage in Volts +f=50; //in Hertz + +//SOLUTION +vl=sqrt((v2^2)-(v1^2)); +xl=(v1*vl)/p; +L=xl/(2*%pi*f); +disp(sprintf("The pure inductance should have a value of %f H",L)); + +//END |