diff options
Diffstat (limited to '848/CH5/EX5.1/Example5_1.sce')
-rwxr-xr-x | 848/CH5/EX5.1/Example5_1.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/848/CH5/EX5.1/Example5_1.sce b/848/CH5/EX5.1/Example5_1.sce new file mode 100755 index 000000000..43210900e --- /dev/null +++ b/848/CH5/EX5.1/Example5_1.sce @@ -0,0 +1,15 @@ +//clear//
+//Caption: Calculation of Lateral power distribution coefficient
+//Example5.1
+//page192
+clear;
+clc;
+close;
+phi = 0; //lateral coordinate
+Half_power = 10; //half power beam width
+teta = Half_power/2;
+teta_rad = teta/57.3;
+L = log(0.5)/log(cos(teta_rad));
+disp(L,'Lateral power distribution coefficient L=')
+//Result
+//Lateral power distribution coefficient L = 181.83303
|