blob: 66d017e4f7825c3678f1db545cea7687dad445db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014
//Ex8_5.sce.
clc;
clear;
s=50;
c=8;
N=900;
phi=25e-3;
Z=s*c;
a=2;
p=2;
n=N/60;
E=(2*Z*phi*p*n)/a;
printf("\n Emf generated=%d volt",E)
|