diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /147/CH3/EX3.18 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '147/CH3/EX3.18')
-rw-r--r-- | 147/CH3/EX3.18/Example3_18.sce | 15 | ||||
-rw-r--r-- | 147/CH3/EX3.18/Result3_18.txt | 4 |
2 files changed, 19 insertions, 0 deletions
diff --git a/147/CH3/EX3.18/Example3_18.sce b/147/CH3/EX3.18/Example3_18.sce new file mode 100644 index 000000000..ae7d91ad8 --- /dev/null +++ b/147/CH3/EX3.18/Example3_18.sce @@ -0,0 +1,15 @@ +//Phase voltage Vp, Impedance Z
+close();
+clear;
+clc;
+Vp = 120;//V
+Z = 36 + %i*48;//ohm
+//Line Voltage 'Vl'
+Vl = 3^(1/2)*Vp;
+Ip = Vp/polar(Z);
+Il = Ip;
+R = real(Z);
+//Power factor 'Pf'
+Pf = R/polar(Z);
+P = 3^(1/2)*Vl*Il*Pf;
+mprintf('Line voltage Vl = %0.1f V\nLine current Il = %0.0f A\nPower factor = %0.1f lagging \nPower P = %0.0f W',Vl,Il,Pf,P);
\ No newline at end of file diff --git a/147/CH3/EX3.18/Result3_18.txt b/147/CH3/EX3.18/Result3_18.txt new file mode 100644 index 000000000..125d432ba --- /dev/null +++ b/147/CH3/EX3.18/Result3_18.txt @@ -0,0 +1,4 @@ +Line voltage Vl = 207.8 V
+Line current Il = 2 A
+Power factor = 0.6 lagging
+Power P = 432 W
\ No newline at end of file |