From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 728/CH5/EX5.1/Ex5_1.sce | 12 ++++++++++++ 728/CH5/EX5.1/Ex5_1.txt | 12 ++++++++++++ 728/CH5/EX5.1/Ex5_1_ans.txt | 3 +++ 3 files changed, 27 insertions(+) create mode 100755 728/CH5/EX5.1/Ex5_1.sce create mode 100755 728/CH5/EX5.1/Ex5_1.txt create mode 100755 728/CH5/EX5.1/Ex5_1_ans.txt (limited to '728/CH5/EX5.1') diff --git a/728/CH5/EX5.1/Ex5_1.sce b/728/CH5/EX5.1/Ex5_1.sce new file mode 100755 index 000000000..fd11d4075 --- /dev/null +++ b/728/CH5/EX5.1/Ex5_1.sce @@ -0,0 +1,12 @@ +//Caption:Determine the minimum distance between two end plates +//Exa:5.1 +clc; +clear; +close; +//Given: +a=3;//in cm +c=3*10^10;//in cm/s +f=10*10^9;//in Hz +P_01=2.405; +d=%pi/sqrt(f^2*4*%pi^2/c^2-(P_01/a)^2); +disp(d,'Minimum distance (in cm) ='); \ No newline at end of file diff --git a/728/CH5/EX5.1/Ex5_1.txt b/728/CH5/EX5.1/Ex5_1.txt new file mode 100755 index 000000000..fd11d4075 --- /dev/null +++ b/728/CH5/EX5.1/Ex5_1.txt @@ -0,0 +1,12 @@ +//Caption:Determine the minimum distance between two end plates +//Exa:5.1 +clc; +clear; +close; +//Given: +a=3;//in cm +c=3*10^10;//in cm/s +f=10*10^9;//in Hz +P_01=2.405; +d=%pi/sqrt(f^2*4*%pi^2/c^2-(P_01/a)^2); +disp(d,'Minimum distance (in cm) ='); \ No newline at end of file diff --git a/728/CH5/EX5.1/Ex5_1_ans.txt b/728/CH5/EX5.1/Ex5_1_ans.txt new file mode 100755 index 000000000..c633d250e --- /dev/null +++ b/728/CH5/EX5.1/Ex5_1_ans.txt @@ -0,0 +1,3 @@ + Minimum distance (in cm) = + + 1.6236496 \ No newline at end of file -- cgit