blob: 666b41883b426f000793dad5b2f7c5cbabea6c48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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 - 16
clear; clc; close;
//
// Given data
Zth = 192.0000;
ZL = 12.0000;
//
// Calculations n
n = sqrt(ZL/Zth);
//
// Display the result
disp("Example 13-16 Solution : ");
printf(" \n n = Turns Ratio Speaker = %.3f turn",n)
|