summaryrefslogtreecommitdiff
path: root/132/CH10/EX10.2/Example10_2.sce
blob: bd6e64a28bfeb1bda0e0f4a2fda3c0c78548e1ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Example 10.2
//Program to Determine the Effective Resistance seen looking into 
//the Primary
clear;
clc ;
close ;
//Given Circuit Data
Rl=8; //Ohms
N12=15; //N12=N1/N2
//Calculation
Rld=(N12)^2*Rl;
//Displaying The Results in Command Window
printf("\n\t The Effective Resistance seen looking into the Primary, Rld = %f kOhms .",Rld/10^3);