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/CH5/EX5.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/CH5/EX5.1')
-rwxr-xr-x | 728/CH5/EX5.1/Ex5_1.sce | 12 | ||||
-rwxr-xr-x | 728/CH5/EX5.1/Ex5_1.txt | 12 | ||||
-rwxr-xr-x | 728/CH5/EX5.1/Ex5_1_ans.txt | 3 |
3 files changed, 27 insertions, 0 deletions
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 |