2010-03-11 23:47:40 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 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/>.
|
|
|
|
*/
|
|
|
|
|
2010-03-11 17:56:19 +08:00
|
|
|
#ifndef OPENEMS_H
|
|
|
|
#define OPENEMS_H
|
|
|
|
|
2010-08-25 14:17:45 +08:00
|
|
|
#include <sstream>
|
2011-02-11 20:52:48 +08:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <time.h>
|
2010-08-25 14:17:45 +08:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2010-03-11 17:56:19 +08:00
|
|
|
class Operator;
|
|
|
|
class Engine;
|
2010-12-02 20:51:34 +08:00
|
|
|
class Engine_Interface_FDTD;
|
2010-03-11 17:56:19 +08:00
|
|
|
class ProcessingArray;
|
2010-04-07 22:31:23 +08:00
|
|
|
class TiXmlElement;
|
2011-01-10 15:27:50 +08:00
|
|
|
class ContinuousStructure;
|
2011-04-13 18:16:54 +08:00
|
|
|
class Engine_Interface_FDTD;
|
2012-07-17 19:23:00 +08:00
|
|
|
class Excitation;
|
2010-03-11 17:56:19 +08:00
|
|
|
|
2011-02-11 20:52:48 +08:00
|
|
|
double CalcDiffTime(timeval t1, timeval t2);
|
|
|
|
string FormatTime(int sec);
|
|
|
|
|
2010-03-11 17:56:19 +08:00
|
|
|
class openEMS
|
|
|
|
{
|
|
|
|
public:
|
2010-12-06 20:04:37 +08:00
|
|
|
openEMS();
|
2011-02-11 20:52:48 +08:00
|
|
|
virtual ~openEMS();
|
2010-03-11 17:56:19 +08:00
|
|
|
|
2011-02-11 20:52:48 +08:00
|
|
|
virtual bool parseCommandLineArgument( const char *argv );
|
2010-03-26 18:57:53 +08:00
|
|
|
|
2010-03-11 17:56:19 +08:00
|
|
|
int SetupFDTD(const char* file);
|
|
|
|
|
2011-02-11 20:52:48 +08:00
|
|
|
virtual void RunFDTD();
|
2010-03-11 17:56:19 +08:00
|
|
|
|
|
|
|
void Reset();
|
|
|
|
|
2010-03-11 22:48:55 +08:00
|
|
|
void SetEnableDumps(bool val) {Enable_Dumps=val;}
|
2010-03-15 23:59:37 +08:00
|
|
|
void SetEndCriteria(double val) {endCrit=val;}
|
2010-03-11 22:48:55 +08:00
|
|
|
|
2010-03-13 03:39:04 +08:00
|
|
|
void DebugMaterial() {DebugMat=true;}
|
2010-03-18 06:16:41 +08:00
|
|
|
void DebugOperator() {DebugOp=true;}
|
2010-04-19 22:09:41 +08:00
|
|
|
void DebugBox() {m_debugBox=true;}
|
2010-03-13 03:39:04 +08:00
|
|
|
|
2010-08-25 14:17:45 +08:00
|
|
|
//! Get informations about external libs used by openEMS
|
|
|
|
static string GetExtLibsInfo();
|
|
|
|
|
2010-10-18 19:26:25 +08:00
|
|
|
//! Set this to about FDTD iteration process
|
|
|
|
void SetAbort(bool val) {m_Abort=val;}
|
|
|
|
//! Check for abort conditions
|
|
|
|
bool CheckAbortCond();
|
|
|
|
|
2011-04-13 18:16:54 +08:00
|
|
|
Engine_Interface_FDTD* NewEngineInterface();
|
|
|
|
|
2010-03-11 17:56:19 +08:00
|
|
|
protected:
|
2010-04-09 21:51:37 +08:00
|
|
|
bool CylinderCoords;
|
|
|
|
|
2011-01-31 19:00:00 +08:00
|
|
|
ContinuousStructure* m_CSX;
|
|
|
|
|
2010-03-11 17:56:19 +08:00
|
|
|
//! Number of Timesteps
|
2010-03-29 16:12:38 +08:00
|
|
|
unsigned int NrTS;
|
2010-03-11 22:48:55 +08:00
|
|
|
bool Enable_Dumps;
|
2010-03-13 03:39:04 +08:00
|
|
|
bool DebugMat;
|
2010-03-18 06:16:41 +08:00
|
|
|
bool DebugOp;
|
2010-07-08 17:28:11 +08:00
|
|
|
bool m_debugCSX;
|
2010-08-17 05:17:19 +08:00
|
|
|
bool m_debugBox, m_debugPEC, m_no_simulation;
|
2010-03-15 23:59:37 +08:00
|
|
|
double endCrit;
|
2010-04-05 01:48:36 +08:00
|
|
|
int m_OverSampling;
|
2010-03-11 17:56:19 +08:00
|
|
|
Operator* FDTD_Op;
|
|
|
|
Engine* FDTD_Eng;
|
|
|
|
ProcessingArray* PA;
|
2010-03-26 19:57:52 +08:00
|
|
|
|
2012-07-17 19:23:00 +08:00
|
|
|
Excitation* m_Exc;
|
|
|
|
|
2010-10-18 19:26:25 +08:00
|
|
|
bool m_Abort;
|
|
|
|
|
2011-02-08 21:08:58 +08:00
|
|
|
#ifdef MPI_SUPPORT
|
|
|
|
enum EngineType {EngineType_Basic, EngineType_SSE, EngineType_SSE_Compressed, EngineType_Multithreaded, EngineType_MPI};
|
|
|
|
#else
|
2010-12-06 22:27:48 +08:00
|
|
|
enum EngineType {EngineType_Basic, EngineType_SSE, EngineType_SSE_Compressed, EngineType_Multithreaded};
|
2011-02-08 21:08:58 +08:00
|
|
|
#endif
|
2010-03-26 19:57:52 +08:00
|
|
|
EngineType m_engine;
|
2010-03-30 19:13:00 +08:00
|
|
|
unsigned int m_engine_numThreads;
|
2010-07-30 21:28:15 +08:00
|
|
|
|
2011-02-11 20:52:48 +08:00
|
|
|
//! Setup an operator matching the requested engine
|
|
|
|
virtual bool SetupOperator(TiXmlElement* FDTD_Opts);
|
|
|
|
|
2010-07-30 21:28:15 +08:00
|
|
|
//! Read boundary conditions from xml element and apply to FDTD operator
|
|
|
|
bool SetupBoundaryConditions(TiXmlElement* BC);
|
2011-01-10 15:27:50 +08:00
|
|
|
|
|
|
|
//! Check whether or not the FDTD-Operator has to store material data.
|
2011-01-31 19:00:00 +08:00
|
|
|
bool SetupMaterialStorages();
|
2011-01-10 15:27:50 +08:00
|
|
|
|
|
|
|
//! Setup all processings.
|
2011-02-16 17:12:41 +08:00
|
|
|
virtual bool SetupProcessing();
|
2010-03-11 17:56:19 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // OPENEMS_H
|