diff options
Diffstat (limited to '2078/CH4/EX4.1')
-rwxr-xr-x | 2078/CH4/EX4.1/Example4_1.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2078/CH4/EX4.1/Example4_1.sce b/2078/CH4/EX4.1/Example4_1.sce new file mode 100755 index 000000000..8d1bdbec4 --- /dev/null +++ b/2078/CH4/EX4.1/Example4_1.sce @@ -0,0 +1,13 @@ +//Exa 4.1
+clc;
+clear;
+close;
+//Given data :
+f=50;//Hz
+d=1*100;//cm
+r=1.25/2;//cm
+r_dash=r*0.7788;//cm
+L=0.4*log(d/r_dash);//mH
+disp(L,"Loop inductance per km(mH)");
+XL=2*%pi*f*L*10^-3;//ohm/Km
+disp(XL,"Reactance of transmission line(ohm/km)");
|