summaryrefslogtreecommitdiff
path: root/2219/CH7/EX7.4/Ex7_4.sce
blob: 23712c3f06f41d83dcca86f75e232b643e0ca0de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// chapter 7 example 4
//-----------------------------------------------------------------------------
clc;
clear;
// given data
n_az      = 0.5;        //length efficiency in azimuth direction
n_el      = 0.7;        //length efficiency in elevation direction
A         = 10;         // area in square mts

// Calculations
n         = n_az * n_el;    // aperture efficiency
Ae        = n*A;            // Effective aperture

// Output
mprintf('Effective aperture of the antenna = %3.1f sq.m',Ae);
//------------------------------------------------------------------------------