
- 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
14 lines
252 B
C
14 lines
252 B
C
#ifndef FDTD_EXAMPLES_H
|
|
#define FDTD_EXAMPLES_H
|
|
|
|
#include "ContinuousStructure.h"
|
|
#include "tinyxml.h"
|
|
|
|
void BuildDipol(const char* filename);
|
|
|
|
void BuildPlaneWave(const char* filename);
|
|
|
|
void BuildMSL(const char* filename);
|
|
|
|
#endif // FDTD_EXAMPLES_H
|