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 /2138/CH12/EX12.3.b/EX_12_3_b.sce | |
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 '2138/CH12/EX12.3.b/EX_12_3_b.sce')
-rwxr-xr-x | 2138/CH12/EX12.3.b/EX_12_3_b.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2138/CH12/EX12.3.b/EX_12_3_b.sce b/2138/CH12/EX12.3.b/EX_12_3_b.sce new file mode 100755 index 000000000..1bcdef665 --- /dev/null +++ b/2138/CH12/EX12.3.b/EX_12_3_b.sce @@ -0,0 +1,18 @@ + +//Example 12.3.b // motor generator in each phase +clc; +clear; +close; +Vl=1100;//line voltage in volts +n=99;//motor efficiency in percentage +Mo=n*735.5;//output of the motor +Mi=(Mo*100)/75;// INPUT OF THE MOTOR IN WATTS +pf= 0.8;//power factor +Il=(Mi)/(sqrt(3)*Vl*pf);//line current in amperes +Ip=Il/(sqrt(3));//phase current in amperes +Ipm=Il;//phase curent of the motor +Ac=Ipm*pf;//active component of phase current in the generator +Rc=Ipm*(sqrt(1-pf^2));//reactive component of phase current of generator +disp(Ipm,"phase current of the genertor in ampere is") +disp(Ac,"active component of phase current in the generator in amperes") +disp(Rc,"reactive component of phase current in the generator in amperes") |