summaryrefslogtreecommitdiff
path: root/343/CH2/EX2.73/ex2_73.sce
diff options
context:
space:
mode:
Diffstat (limited to '343/CH2/EX2.73/ex2_73.sce')
-rwxr-xr-x343/CH2/EX2.73/ex2_73.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/343/CH2/EX2.73/ex2_73.sce b/343/CH2/EX2.73/ex2_73.sce
new file mode 100755
index 000000000..3a6acdc69
--- /dev/null
+++ b/343/CH2/EX2.73/ex2_73.sce
@@ -0,0 +1,17 @@
+clc
+Xl=4; //Assigning values to parameters
+Xc=8;
+Z1=1;
+Z2=4*%i;
+Z3=-%i*8;
+Zeq=Z1+(Z2*Z3)/(Z2+Z3);
+Y=1/Zeq;
+disp("Mho",Y,polar(Y),"Admittance");
+Xl=10;
+Xc=5;
+Z1=1;
+Z2=10*%i;
+Z3=-%i*5;
+Zeq=Z1+(Z2*Z3)/(Z2+Z3);
+Y=1/Zeq;
+disp("Mho",Y,polar(Y),"Admittance"); \ No newline at end of file