blob: 81a014c57c10e93537e91016352c00e514c345a0 (
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
31
32
|
// Example 6.3
// Determine (a) NEMA standard horsepower rating of machine (b) Required
// running capacitance (c) Additional capacitance required for starting
// Page No. 271
clc;
clear;
close;
// Given data
hp=35; // Power in hp
p=3; // Number of phase
f=60; // Frequency
// (a) NEMA standard horsepower rating of machine
Prated3ph=hp*p/2;
// (b)Required running capacitance
C1=26.5*f;
// (c) Additional capacitance required for starting.
C2=230*f-C1;
// Display result on command window
printf("\n NEMA standard horsepower rating of machine = %0.1f hp ",Prated3ph);
printf("\n Required running capacitance = %0.0f microF ",C1);
printf("\n Additional capacitance required for starting = %0.0f microF ",C2);
|