summaryrefslogtreecommitdiff
path: root/3556/CH13/EX13.7/Ex13_7.sce
blob: 57c095f9222c8b2effce2875e744030a4d85c11c (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
33
clc
// Fundamental of Electric Circuit 
// Charles K. Alexander and  Matthew N.O Sadiku  
// Mc Graw Hill of New York 
// 5th Edition 

// Part 1     :  AC Circuits 
// Chapter 13 :  Magnetically Couple Circuits
// Example 13 - 7

clear; clc; close; 
//
// Given data
V1 =  2400.0000;
V2 =   120.0000;
N2 =    50.0000;
S  =  9600.0000;
//
// Calculations Turn Ratio 
n  = V2/V1;
// Calculations the Number of Turn on The Primary Side 
N1 = N2/n;
// Calculations Current I1
I1 = S/V1;
// Calculation Currwent I2
I2 = I1/n;
//
// Display the result
disp("Example 13-9 Solution : ");
printf(" \n n      = Turn Ratio                              = %.3f ",n)
printf(" \n N1     = The Number of Turn on The Primary Side  = %.3f turns",N1)
printf(" \n I1     = Magnitude of Current I1                 = %.3f A",I1)
printf(" \n I2     = Magnitude of Current I2                 = %.3f A",I2)