blob: 886c66a5b655826a78ab55e0a83525c63e2ef5d1 (
plain)
1
2
3
4
5
6
7
8
|
//detrmine the value of inductance
I=5;//amp
V=200;//volt
f=50;//hertz
X=V/I;
L=40/(2*%pi*50);
disp('the value of inductive.reactance='+string (X)+'ohms' , 'value of inductors='+string(L)+'henry');
|