diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1733/CH5/EX5.11 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1733/CH5/EX5.11')
-rwxr-xr-x | 1733/CH5/EX5.11/5_11.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1733/CH5/EX5.11/5_11.sce b/1733/CH5/EX5.11/5_11.sce new file mode 100755 index 000000000..80d993287 --- /dev/null +++ b/1733/CH5/EX5.11/5_11.sce @@ -0,0 +1,13 @@ +//5.11
+clc;
+R=15;
+Vrms_input_phase=415/3^0.5;
+VL=3^0.5*2^0.5*Vrms_input_phase*(1/(%pi)*(%pi/6-30*%pi/(180*4)+sind(60)/8))^0.5;
+printf("\nRMS value of output voltage per phase=%.2f V", VL)
+Po=3*VL^2/R;
+printf("\nPower output =%.1f W", Po)
+I_line=VL/R;
+printf("\nLine Current =%.2f A", I_line)
+VA_input=3*Vrms_input_phase*I_line;
+pf_input=Po/VA_input;
+printf("\nInput Power Factor =%.3f lagging", pf_input)
\ No newline at end of file |