blob: d4f0d3334404dd5844ced5c5f524198c44b7de9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Ex 7.3 page 261
clc;
clear;
close;
N1=900;// rpm
Va1=198;// V
N2=500;// rpm
Vs=230;// V
Va2=Va1*N2/N1;// V
// 2*sqrt(2)*Vs*cos(alfa)/%pi=Va2
alfa=acos(Va2/(2*sqrt(2)*Vs)*%pi)*180/%pi;// degree
printf('\n triggering angle = %.1f degree',alfa)
|