File: nec_near_field_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 (44 lines) | stat: -rw-r--r-- 1,048 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
class nec_near_field_pattern
{
public:
	
	/*! Returns the frequency in Herz. */
	nec_float get_frequency();
	
	
	/*! Returns the flag indicating whether the result is a near electric or magnetic field pattern. */
	int get_nfeh();
	
	
	/*! Returns the array of x-coordinate in meters of field points. */  
	vector<nec_float> get_x();
	
	
	/*! Returns the array of y-coordinate in meters of field points. */
	vector<nec_float> get_y();
	
	
	/*! Returns the array of z-coordinate in meters of field points. */
	vector<nec_float> get_z();
	
	
	/*! Returns the array of x_components of the electric or magnetic field. */
	vector<nec_complex> get_field_x();
	
	
	/*! Returns the array of y_components of the electric or magnetic field. */
	vector<nec_complex> get_field_y();
	
	
	/*! Returns the array of z_components of the electric or magnetic field. */
	vector<nec_complex> get_field_z();
	
	

/*this private method won't be wrapped, but allow an error in the compilation
process to be avoided.*/ 	
private:
	
	nec_near_field_pattern(int nfeh);
		
};