blob: 98332ef5d8b39ba91be0a2972b7b5ba594cd0e1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
clc
// Fundamental of Electric Circuit
// Charles K. Alexander and Matthew N.O Sadiku
// Mc Graw Hill of New York
// 5th Edition
// Part 2 : AC Circuits
// Chapter 12 : Three Phase Circuit
// Example 12 - 7
clear; clc; close;
//
// Given data
P_motor = 5600.0000;
VL_motor = 220.0000;
IL_motor = 18.200;
//
// Calculations Complex Power Motor
S_motor = (3)^0.5*VL_motor*IL_motor;
// Calculations Power Factor Motor
pf_motor = (P_motor/S_motor);
//
disp("Example 12-7 Solution : ");
printf(" \n Pf = Power Factor Motor = %.3f ",pf_motor)
|