2012-02-02 10:45:26 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Thorsten Liebig (Thorsten.Liebig@gmx.de)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NF2FF_H
|
|
|
|
#define NF2FF_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <vector>
|
|
|
|
#include <cmath>
|
|
|
|
#include <complex>
|
|
|
|
#include "nf2ff_calc.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
class TiXmlElement;
|
|
|
|
|
|
|
|
class nf2ff
|
|
|
|
{
|
|
|
|
public:
|
2012-02-10 11:02:25 +00:00
|
|
|
nf2ff(vector<float> freq, vector<float> theta, vector<float> phi, vector<float> center, unsigned int numThreads=0);
|
2012-02-02 10:45:26 +00:00
|
|
|
~nf2ff();
|
|
|
|
|
|
|
|
bool AnalyseFile(string E_Field_file, string H_Field_file);
|
|
|
|
|
2013-06-03 19:44:12 +00:00
|
|
|
void SetRadius(float radius);
|
|
|
|
void SetPermittivity(vector<float> permittivity);
|
|
|
|
void SetPermeability(vector<float> permeability);
|
|
|
|
|
2012-09-17 10:33:30 +00:00
|
|
|
double GetTotalRadPower(size_t f_idx) const {return m_nf2ff.at(f_idx)->GetTotalRadPower();}
|
|
|
|
double GetMaxDirectivity(size_t f_idx) const {return m_nf2ff.at(f_idx)->GetMaxDirectivity();}
|
2012-02-02 10:45:26 +00:00
|
|
|
|
2012-09-17 10:33:30 +00:00
|
|
|
complex<double>** GetETheta(size_t f_idx) const {return m_nf2ff.at(f_idx)->GetETheta();}
|
|
|
|
complex<double>** GetEPhi(size_t f_idx) const {return m_nf2ff.at(f_idx)->GetEPhi();}
|
|
|
|
double** GetRadPower(size_t f_idx) const {return m_nf2ff.at(f_idx)->GetRadPower();}
|
2012-02-02 10:45:26 +00:00
|
|
|
|
|
|
|
//! Write results to a hdf5 file
|
|
|
|
bool Write2HDF5(string filename);
|
|
|
|
|
|
|
|
void SetVerboseLevel(int level) {m_Verbose=level;}
|
|
|
|
|
|
|
|
static bool AnalyseXMLNode(TiXmlElement* ti_nf2ff);
|
|
|
|
static bool AnalyseXMLFile(string filename);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
vector<float> m_freq;
|
2013-06-03 19:44:12 +00:00
|
|
|
vector<float> m_permittivity;
|
|
|
|
vector<float> m_permeability;
|
2012-02-02 10:45:26 +00:00
|
|
|
unsigned int m_numTheta;
|
|
|
|
unsigned int m_numPhi;
|
|
|
|
float* m_theta;
|
|
|
|
float* m_phi;
|
|
|
|
float m_radius;
|
|
|
|
int m_Verbose;
|
|
|
|
vector<nf2ff_calc*> m_nf2ff;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // NF2FF_H
|