diff options
Diffstat (limited to '728/CH4/EX4.5')
-rwxr-xr-x | 728/CH4/EX4.5/Ex4_5.sce | 25 | ||||
-rwxr-xr-x | 728/CH4/EX4.5/Ex4_5.txt | 25 | ||||
-rwxr-xr-x | 728/CH4/EX4.5/Ex4_5_ans.txt | 28 |
3 files changed, 78 insertions, 0 deletions
diff --git a/728/CH4/EX4.5/Ex4_5.sce b/728/CH4/EX4.5/Ex4_5.sce new file mode 100755 index 000000000..0a6349b86 --- /dev/null +++ b/728/CH4/EX4.5/Ex4_5.sce @@ -0,0 +1,25 @@ +//Caption:Calculate charcteristic impedance & effective dielectric constant & velocity of propagation
+//Exa:4.5
+clc;
+clear;
+close;
+e_r=9.7;
+c=3*10^8;//in m/s
+r_1=0.5;//when ratio: (W/h)=0.5
+r_2=5;//when ratio: (W/h)=5
+//For W/h ratio=0.5
+e_eff_1=(e_r+1)/2+((e_r-1)/2)*[1/{sqrt(1+12*(1/r_1))+0.04*(1-r_1)}];
+Z_o_1=60*log(8/r_1+r_1/4)/sqrt(e_eff_1);
+v_1=c/sqrt(e_eff_1);
+disp("For W/h=0.5 ,");
+disp(e_eff_1,'Effective dielectric constant =');
+disp(Z_o_1,'Charcteristic impedance (in ohms) =');
+disp(v_1,'Velocity of propagation (in m/s) =');
+//For W/h ratio=5
+e_eff_2=(e_r+1)/2+((e_r-1)/2)*[1/{sqrt(1+12*(1/r_2))}];
+Z_o_2=120*%pi*[1/{r_2+1.393+0.667*log(1.444+r_2)}]/sqrt(e_eff_2);
+v_2=c/sqrt(e_eff_2);
+disp("For W/h=5,");
+disp(e_eff_2,'Effective dielectric constant =');
+disp(Z_o_2,'Charcteristic impedance (in ohms) =');
+disp(v_2,'Velocity of propagation (in m/s) =');
\ No newline at end of file diff --git a/728/CH4/EX4.5/Ex4_5.txt b/728/CH4/EX4.5/Ex4_5.txt new file mode 100755 index 000000000..b4c72681e --- /dev/null +++ b/728/CH4/EX4.5/Ex4_5.txt @@ -0,0 +1,25 @@ +//Caption:Calculate charcteristic impedance & effective dielectric constant & velocity of propagation
+//Exa:4.5
+clc;
+clear;
+close;
+e_r=9.7;
+c=3*10^8;//in m/s
+r_1=0.5;//when ratio: (W/h)=0.5
+r_2=5;//when ratio: (W/h)=5
+//For W/h ratio=0.5
+e_eff_1=(e_r+1)/2+((e_r-1)/2)*[1/{sqrt(1+12*(1/r_1))+0.04*(1-r_1)}];
+Z_o_1=60*log(8/r_1+r_1/4)/sqrt(e_eff_1);
+v_1=c/sqrt(e_eff_1);
+disp("For W/h=0.5 ,");
+disp(e_eff_1,'Effective dielectric constant =');
+disp(Z_o_1,'Charcteristic impedance (in ohms) =');
+disp(v_1,'Velocity of propagation (in m/s) =');
+//For W/h ratio=5
+e_eff_2=(e_r+1)/2+((e_r-1)/2)*[1/{sqrt(1+12*(1/r_2))}];
+Z_o_2=120*%pi*[1/{r_2+1.393+0.667*log(1.444+r_2)}]/sqrt(e_eff_2);
+v_2=c/sqrt(e_eff_2);
+disp("For W/h=5,");
+disp(e_eff_2,'Effective dielectric constant =');
+disp(Z_o_2,'Charcteristic impedance (in ohms) =');
+disp(v_2,'Velocity of propagation (in m/s) =');
diff --git a/728/CH4/EX4.5/Ex4_5_ans.txt b/728/CH4/EX4.5/Ex4_5_ans.txt new file mode 100755 index 000000000..1096bd3fe --- /dev/null +++ b/728/CH4/EX4.5/Ex4_5_ans.txt @@ -0,0 +1,28 @@ +
+ For W/h=0.5 ,
+
+ Effective dielectric constant =
+
+ 6.2165339
+
+ Charcteristic impedance (in ohms) =
+
+ 66.908274
+
+ Velocity of propagation (in m/s) =
+
+ 1.203D+08
+
+ For W/h=5,
+
+ Effective dielectric constant =
+
+ 7.7091187
+
+ Charcteristic impedance (in ohms) =
+
+ 17.781923
+
+ Velocity of propagation (in m/s) =
+
+ 1.080D+08
|