summaryrefslogtreecommitdiff
path: root/25/CH5/EX5.1
diff options
context:
space:
mode:
Diffstat (limited to '25/CH5/EX5.1')
-rwxr-xr-x25/CH5/EX5.1/5_1.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/25/CH5/EX5.1/5_1.sce b/25/CH5/EX5.1/5_1.sce
new file mode 100755
index 000000000..ad5021fb9
--- /dev/null
+++ b/25/CH5/EX5.1/5_1.sce
@@ -0,0 +1,11 @@
+// example:-5.1,page no.-209.
+//program to find the equivalent voltages and current.
+syms a b A Zte V I C1 C2 P;
+P=(a*b*A^2)/(4*Zte);
+c=(1/2)*V*I;
+d=(1/2)*(A^2)*C1*C2;
+C1=sqrt((a*b)/2); // on comparision.
+C2=sqrt((a*b)/2)*Zte; // on comparision.
+c=[C1 C2];
+disp(c)
+disp("which completes the transmission line equivalence for the TE10 mode.") \ No newline at end of file