diff options
Diffstat (limited to '3793/CH4/EX4.7/exp_4_7.sce')
-rw-r--r-- | 3793/CH4/EX4.7/exp_4_7.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3793/CH4/EX4.7/exp_4_7.sce b/3793/CH4/EX4.7/exp_4_7.sce new file mode 100644 index 000000000..edc1eae0d --- /dev/null +++ b/3793/CH4/EX4.7/exp_4_7.sce @@ -0,0 +1,13 @@ +clear;
+clc;
+l=250;
+z=complex(.032,.30);
+y=complex(0,3.5*10^(-6));
+Z=z*l;
+Y=y*l;
+A=1+((Y*Z)/2);
+B=Z;
+C=Y*(1+(Y*Z)/4);
+D=A;
+mprintf("A,B,C and D parameters are respectively");
+disp(A,B,C,D);
|