openEMS/openems.h
Thorsten Liebig 8cffb2ae3c new class: openEMS
- This class reads/writes combined CS- and FDTD-setup data and does the actual FDTD run.
- Examples now write there own xml file which is read by openEMS-class
- Standalone version possible with xml-file input
2010-03-11 10:56:19 +01:00

29 lines
345 B
C++

#ifndef OPENEMS_H
#define OPENEMS_H
class Operator;
class Engine;
class ProcessingArray;
class openEMS
{
public:
openEMS();
~openEMS();
int SetupFDTD(const char* file);
void RunFDTD();
void Reset();
protected:
//! Number of Timesteps
int NrTS;
Operator* FDTD_Op;
Engine* FDTD_Eng;
ProcessingArray* PA;
};
#endif // OPENEMS_H