blob: a8c10b3baec715e8ca0d151a5457f737c6270d73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Electric machines and power systems by Syed A Nasar
//Publisher:TataMcgraw Hill
//Year: 2002 ; Edition - 7
//Example 3.3
//Scilab Version : 6.0.0 ; OS : Windows
clc;
clear;
a=5; //turns ratio
Z=10; //load on transformer
z1=(a^2)*Z;
printf('The impedance at primary is %d ohms',z1)
|