blob: c1044e25d324772dd42b115d945eaba6240491d9 (
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
|
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 - 17
clear; clc; close;
//
// Given data
Vp = 2400.0000;
Vs = 240.0000;
Ns = 72.0000;
P_bulbs = 100.0000;
P_TV = 350.0000;
P_Kitchen = 15000.0000;
n_bulbs = 8;
//
// Calculations Np
Np = Ns *(Vp/Vs)
// Calculations Ip
P = (n_bulbs*P_bulbs)+ P_TV + P_Kitchen;
Ip = P/Vp;
// Display the result
disp("Example 13-17 Solution : ");
printf(" \n a. n = Turns Ratio Speaker = %.3f turn",Np)
printf(" \n b. Ip = Current In The Primary Winding = %.3f A",Ip)
|