blob: cf44622d6905f8d4cc07c4dd59311837947f77fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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 - 15
clear; clc; close;
//
// Given data
V1 = 120.0000;
n = 3.0000;
//
// Calculatioons V2
V2 = V1/n;
// Display the result
disp("Example 13-15 Solution : ");
printf(" \n V2 = Voltage Accros Thr Load = %.3f Volt",V2)
|