summaryrefslogtreecommitdiff
path: root/25/CH8/EX8.6/8_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '25/CH8/EX8.6/8_6.sce')
-rwxr-xr-x25/CH8/EX8.6/8_6.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/25/CH8/EX8.6/8_6.sce b/25/CH8/EX8.6/8_6.sce
new file mode 100755
index 000000000..af2537483
--- /dev/null
+++ b/25/CH8/EX8.6/8_6.sce
@@ -0,0 +1,13 @@
+// example:-8.6,page no.-419.
+// program to determine the even and odd mode characteristic impedence.
+syms C A d W C11 C12 Ce Co v eo er s b uo Zoe Zoo eipsila;
+C=A*eipsila/d;
+C11=(eo*er*W)/((b-s)/2)+(eo*er*W)/((b+s)/2);
+C12=er*eo*W/s;
+Ce==C11;
+Co=C11+2*C12
+v=1/sqrt(er*eo*uo);
+Zoe=1/(v*C11); // as Ce=C11;
+Zoo=1/(v*Co);
+disp(Zoe,'Zoe = ')
+disp(Zoo,'zoo = ') \ No newline at end of file