summaryrefslogtreecommitdiff
path: root/72/CH11/EX11.4.1
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:38:01 +0530
committerprashantsinalkar2017-10-10 12:38:01 +0530
commitf35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch)
treeeb72842d800ac1233e9d890e020eac5fd41b0b1b /72/CH11/EX11.4.1
parent7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff)
downloadScilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip
updated the code
Diffstat (limited to '72/CH11/EX11.4.1')
-rwxr-xr-x72/CH11/EX11.4.1/11_4_1.sce58
1 files changed, 29 insertions, 29 deletions
diff --git a/72/CH11/EX11.4.1/11_4_1.sce b/72/CH11/EX11.4.1/11_4_1.sce
index 23abdf5d8..840250845 100755
--- a/72/CH11/EX11.4.1/11_4_1.sce
+++ b/72/CH11/EX11.4.1/11_4_1.sce
@@ -1,29 +1,29 @@
-//CAPTION:Characteristic_Impedance_of_a_Shielded_Strip_Line
-//chapter_no.-11, page_no.-508
-//Example_no.11-4-1
-
-
-clc;
-
-
-//(a)Calculate_the_K_factor
-
-er=2.56//relative_dielectric_constant
-w=25;//strip_width
-t=14;//strip_thickness
-d=70;//shield_depth
-K=1/(1-(t/d));
-disp(K,'the_K_factor is =');
-
-//(b)Calculate_the_fringe_capacitance
-
-Cf=((8.854*er)*((2*K*log(K+1))-((K-1)*log((K^2)-1))))/%pi;
-disp(Cf,'the_fringe_capacitance(in pF/m)is =');
-
-
-//(c) Calculate_the_characteristic_impedance_of_the_line
-
-Z0=94.15/((((w/d)*K)+(Cf/(8.854*er)))*(sqrt(er)));
-disp(Z0,'the_characteristic_impedance_of_the_line(in ohms)is =');
-
-
+
+//chapter_no.-11, page_no.-508
+//Example_no.11-4-1
+
+
+clc;
+
+
+//(a)Calculate_the_K_factor
+
+er=2.56//relative_dielectric_constant
+w=25;//strip_width
+t=14;//strip_thickness
+d=70;//shield_depth
+K=1/(1-(t/d));
+disp(K,'the_K_factor is =');
+
+//(b)Calculate_the_fringe_capacitance
+
+Cf=((8.854*er)*((2*K*log(K+1))-((K-1)*log((K^2)-1))))/%pi;
+disp(Cf,'the_fringe_capacitance(in pF/m)is =');
+
+
+//(c) Calculate_the_characteristic_impedance_of_the_line
+
+Z0=94.15/((((w/d)*K)+(Cf/(8.854*er)))*(sqrt(er)));
+disp(Z0,'the_characteristic_impedance_of_the_line(in ohms)is =');
+
+