blob: 354459e8b8e9928bfd120b3cdbbdd890faffbf3b (
plain)
1
2
3
4
5
6
|
//Example 4_7 page no:172
clc
I1=20;//direct current in conductor(in amps)
I2=20;//sinusoidal peak current in conductor (in amps)
ret_current=sqrt((20^2+(20^2/2)))
disp(ret_current,"The resultant current in conductor is(A)")//in text book value is rounded to 2 digits
|