blob: 5aa5422d2dbb9a868e15fcab2ba18bf839c564a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
clear;
clc;
pole=2;
s=50;
v=11;
pf=.8;
H=6;
Ns=3000;
inpinc=62000;
K=H*s;
mprintf("Kinetic energy stored is %.3f MJ\n",K);
po=s*pf;
pi=inpinc*735.5/10^6;
f=50;
Ap=pi-po;
A=(Ap*360*f)/(2*H*s);
mprintf("acceleration of generator is %.3f degree electrical per second sqr\n",A);
|