File: nec_structure_excitation.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 (28 lines) | stat: -rw-r--r-- 547 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
class nec_structure_excitation 
{
public:
	
	/*! Returns the frequency in Herz */
	nec_float get_frequency();
	
	
	/*! Returns the array of segment tag numbers. */
	vector<int> get_tag();
	
	
	/*! Returns the array of segment numbers. */
	vector<int> get_segment();
	
	
	/*! Returns the array of complex currents in Ampere. */	
	vector<nec_complex> get_current();
	
	
	/*! Returns the array of complex voltages in Volt. */
	vector<nec_complex> get_voltage();
	
	
	/*! Returns the array of power in Watt. */  
	vector<nec_float> get_power();
};