blob: b611f05d373143b1dc6efd877518377f21126384 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// chapter 7 example 15
//-----------------------------------------------------------------------------
clc;
clear;
f = 3; // focal length in m
fpos = 1.5; // feed is placed 1.5m from pt of intersection os sec.reflector and antenna axis
// Calculation
f_hyp = f-fpos; // focal length of hyperboloid from figure;
// Output
mprintf('focal length of hyperboloid = %3.1f m',f_hyp);
//------------------------------------------------------------------------------
|