blob: 3d7f2cb7874adcd4726bf380dc2531c594de85e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Solved Example 1.6
//Page no 7
//Find the Norton equivalent current IN and admittance YN
clear
clc
printf("\n Find the Norton equivalent current IN and admittance YN")
Va=4.0//V
a=0.25//A/V
R1=2//ohm
R2=3//ohm
I=2
Zth=5
Ia=(Va/(R1+R2))+((R1*I)/(R1+R2))
Yn=1/Zth
printf("\n Norton equivalent current IN is = %.2f V",Ia)
printf("\n admittance YN is = %.2f Ohm",Yn)
|