blob: 36126587957141414964bba0ba6264fb396a0a30 (
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
|
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 3: Magnetically Couple Circuits
// Example 13 - 5
clear; clc; close;
//
// Given data
L1 = 10.0000;
L2 = 4.0000;
M = 2.00000
//
// Calculations La
La = L1 - M;
// Calculation Lb
Lb = L2 - M;
// Calculation LC
Lc = M
// Display the result
disp("Example 13-5 Solution : ");
printf(" \n La = Inductance of Inductor a = %.3f A",La)
printf(" \n Lb = Inductance of Inductor b = %.3f A",Lb)
printf(" \n Lc = Inductance of Inductor c = %.3f A",Lc)
|