diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /728/CH4/EX4.1 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '728/CH4/EX4.1')
-rwxr-xr-x | 728/CH4/EX4.1/Ex4_1.sce | 18 | ||||
-rwxr-xr-x | 728/CH4/EX4.1/Ex4_1.txt | 18 | ||||
-rwxr-xr-x | 728/CH4/EX4.1/Ex4_1_ans.txt | 15 |
3 files changed, 51 insertions, 0 deletions
diff --git a/728/CH4/EX4.1/Ex4_1.sce b/728/CH4/EX4.1/Ex4_1.sce new file mode 100755 index 000000000..22b009f8b --- /dev/null +++ b/728/CH4/EX4.1/Ex4_1.sce @@ -0,0 +1,18 @@ +//Caption:Calculate (i)-inductance per unit length,(ii)-capacitance per unit length,(iii)-charcteristic impedance,(iv)-velocity of propagation
+//Exa:4.1
+clc;
+clear;
+close;
+//Given:
+d=0.49;//in cm
+D=1.1;//in cm
+e_r=2.3;
+c=3*10^8;//in meter/second
+L=2*(10^-7)*log(D/d);//in Henry/meter
+C=55.56*(10^-12)*(e_r)/log(D/d);//in farad/meter
+R_o=(60/sqrt(e_r)) *log(D/d);//in ohms
+v=c/sqrt(e_r);//in meter/second
+disp(L,'Inductance per unit length(in H/m) =');
+disp(C,'Capacitance per unit length(in F/m) =');
+disp(R_o,'Characteristic Impedance (in ohms) =');
+disp(v,'Velocity of propagation (in m/s)=');
\ No newline at end of file diff --git a/728/CH4/EX4.1/Ex4_1.txt b/728/CH4/EX4.1/Ex4_1.txt new file mode 100755 index 000000000..407e14ce5 --- /dev/null +++ b/728/CH4/EX4.1/Ex4_1.txt @@ -0,0 +1,18 @@ +//Caption:Calculate (i)-inductance per unit length,(ii)-capacitance per unit length,(iii)-charcteristic impedance,(iv)-velocity of propagation
+//Exa:4.1
+clc;
+clear;
+close;
+//Given:
+d=0.49;//in cm
+D=1.1;//in cm
+e_r=2.3;
+c=3*10^8;//in meter/second
+L=2*(10^-7)*log(D/d);//in Henry/meter
+C=55.56*(10^-12)*(e_r)/log(D/d);//in farad/meter
+R_o=(60/sqrt(e_r)) *log(D/d);//in ohms
+v=c/sqrt(e_r);//in meter/second
+disp(L,'Inductance per unit length(in H/m) =');
+disp(C,'Capacitance per unit length(in F/m) =');
+disp(R_o,'Characteristic Impedance (in ohms) =');
+disp(v,'Velocity of propagation (in m/s)=');
diff --git a/728/CH4/EX4.1/Ex4_1_ans.txt b/728/CH4/EX4.1/Ex4_1_ans.txt new file mode 100755 index 000000000..2968fc1d7 --- /dev/null +++ b/728/CH4/EX4.1/Ex4_1_ans.txt @@ -0,0 +1,15 @@ +Inductance per unit length(in H/m) =
+
+ 0.0000002
+
+ Capacitance per unit length(in F/m) =
+
+ 1.580D-10
+
+ Characteristic Impedance (in ohms) =
+
+ 31.992879
+
+ Velocity of propagation (in m/s)=
+
+ 1.978D+08
|