diff options
Diffstat (limited to '728/CH3/EX3.3')
-rwxr-xr-x | 728/CH3/EX3.3/Ex3_3.sce | 9 | ||||
-rwxr-xr-x | 728/CH3/EX3.3/Ex3_3.txt | 13 | ||||
-rwxr-xr-x | 728/CH3/EX3.3/Ex3_3_ans.txt | 4 |
3 files changed, 26 insertions, 0 deletions
diff --git a/728/CH3/EX3.3/Ex3_3.sce b/728/CH3/EX3.3/Ex3_3.sce new file mode 100755 index 000000000..83bf5687e --- /dev/null +++ b/728/CH3/EX3.3/Ex3_3.sce @@ -0,0 +1,9 @@ +//Caption:Calculate phase velocity of the wave that propogates on line as given in example 3.2
+//Exa:3.3
+clc;
+clear;
+close;
+w=4*%pi*10^3;//in rad/sec
+b=0.02543;//in rad/km
+V_p=w/b;// phase velocity
+disp(V_p,"Phase velocity (in km/sec) =");
\ No newline at end of file diff --git a/728/CH3/EX3.3/Ex3_3.txt b/728/CH3/EX3.3/Ex3_3.txt new file mode 100755 index 000000000..654b86c01 --- /dev/null +++ b/728/CH3/EX3.3/Ex3_3.txt @@ -0,0 +1,13 @@ +//Caption:Calculate phase velocity of the wave that propogates on line as given in example 3.2
+//Exa:3.3
+clc;
+clear;
+close;
+w=4*%pi*10^3;//in rad/sec
+b=0.02543;//in rad/km
+V_p=w/b;// phase velocity
+disp(V_p,"Phase velocity (in km/sec) =");// But answer in book is misprinted as 494.22
+
+
+
+
diff --git a/728/CH3/EX3.3/Ex3_3_ans.txt b/728/CH3/EX3.3/Ex3_3_ans.txt new file mode 100755 index 000000000..2b89db88f --- /dev/null +++ b/728/CH3/EX3.3/Ex3_3_ans.txt @@ -0,0 +1,4 @@ +Phase velocity (in km/sec) =
+
+ 494155.35
+
|