File: nec_norm_rx_pattern.i

package info (click to toggle)
necpp 1.2.6%2Bcvs20070816-1.3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 3,772 kB
  • ctags: 5,989
  • sloc: cpp: 30,761; ansic: 10,162; fortran: 8,339; python: 2,948; makefile: 189; sh: 1
file content (57 lines) | stat: -rw-r--r-- 1,052 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
%nodefault;
class nec_norm_rx_pattern
{
public:
	
	/*! Returns the frequency in Herz. */
	nec_float get_frequency();
	
	
	/*! Returns the number of theta angles. */
	int get_n_theta();
	
	
	/*! Returns the number of phi angles. */
	int get_n_phi();
	
	
	/*! Returns the first value of theta in degrees. */
	nec_float get_theta_start();
	
	
	/*! Returns the first value of phi angles in degrees. */
	nec_float get_phi_start();
	
	
	/*! Returns the increment for theta in degrees. */
	nec_float get_delta_theta();
	
	
	/*! Returns the increment for phi in degrees. */
	nec_float get_delta_phi();
	
	
	/*! Returns the value of eta in degrees. */
	nec_float get_eta();
	
	
	/*! Returns the axial ratio (no units). */
	nec_float get_axial_ratio();
	
	
	/*! Returns the segment number. */
	int get_segment_number();
	
	
	/*! Return the polarization type. */
	string get_type();
	
	
	/*! Returns the normalization factor in dB. */
	nec_float get_norm_factor();
	
	
	/*! Returns the array of receiving gains not yet normalized. */
	real_array get_mag();
		
};