diff options
Diffstat (limited to '1109/CH15/EX15.6/15_6.sce')
-rwxr-xr-x | 1109/CH15/EX15.6/15_6.sce | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/1109/CH15/EX15.6/15_6.sce b/1109/CH15/EX15.6/15_6.sce new file mode 100755 index 000000000..9aeb5cb78 --- /dev/null +++ b/1109/CH15/EX15.6/15_6.sce @@ -0,0 +1,7 @@ +clear;
+clc;
+R1=1000;C1=0.0212*(10^-6);R2=250;
+R0=sqrt(R1*R2);
+printf("Characteristic impedance of line = %f ohms\n",R0);
+L2=C1*R0*R0;
+printf("Components of the shunt arm are inductance of %f mH in parallel with a given resistance of %f ohms.",L2*(10^3),R0);
|