blob: 25ce7b895bc5963d71a7d8e3c473af74be677b2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Grob's Basic Electronics 11e
// Chapter No. 19
// Example No. 19_18
clc; clear;
// Inductance L1 is 5 mH and L2 is 10 mH. How much is Lt?
// Given data
l1 = 5*10^-3; // Inductor 1=5 mH
l2 = 10*10^-3; // Inductor 2=10 mH
Lt = l1+l2;
disp (Lt,'The Total Inductance in Henry')
disp ('i.e 15 mH')
|