2010-03-11 15:47:40 +00: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-01 08:19:39 +00:00
|
|
|
#ifndef OPERATOR_H
|
|
|
|
#define OPERATOR_H
|
|
|
|
|
|
|
|
#include "tools/AdrOp.h"
|
|
|
|
#include "tools/constants.h"
|
2010-05-03 16:33:14 +00:00
|
|
|
#include "excitation.h"
|
2010-12-06 08:59:42 +00:00
|
|
|
#include "Common/operator_base.h"
|
2010-03-01 08:19:39 +00:00
|
|
|
|
2010-04-25 19:59:05 +00:00
|
|
|
class Operator_Extension;
|
2012-07-16 15:15:10 +00:00
|
|
|
class Operator_Ext_Excitation;
|
2010-05-08 16:12:44 +00:00
|
|
|
class Engine;
|
2010-08-19 08:13:03 +00:00
|
|
|
class TiXmlElement;
|
2010-04-25 19:59:05 +00:00
|
|
|
|
2010-12-07 13:47:22 +00:00
|
|
|
//! Basic FDTD-operator
|
2010-12-06 08:59:42 +00:00
|
|
|
class Operator : public Operator_Base
|
2010-03-01 08:19:39 +00:00
|
|
|
{
|
2010-05-06 20:55:59 +00:00
|
|
|
friend class Engine;
|
2011-01-07 15:12:07 +00:00
|
|
|
friend class Engine_Interface_FDTD;
|
2010-07-06 08:01:26 +00:00
|
|
|
friend class Operator_Ext_LorentzMaterial; //we need to find a way around this... friend class Operator_Extension only would be nice
|
2012-05-08 11:58:20 +00:00
|
|
|
friend class Operator_Ext_ConductingSheet; //we need to find a way around this... friend class Operator_Extension only would be nice
|
2010-07-16 15:25:32 +00:00
|
|
|
friend class Operator_Ext_PML_SF_Plane;
|
2011-03-16 15:26:01 +00:00
|
|
|
friend class Operator_Ext_Excitation;
|
2011-03-18 13:17:09 +00:00
|
|
|
friend class Operator_Ext_UPML;
|
|
|
|
friend class Operator_Ext_Cylinder;
|
2010-12-06 12:04:37 +00:00
|
|
|
public:
|
2010-10-27 09:17:58 +00:00
|
|
|
enum DebugFlags {None=0,debugMaterial=1,debugOperator=2,debugPEC=4};
|
|
|
|
|
2013-12-28 20:02:49 +00:00
|
|
|
enum MatAverageMethods {QuarterCell=0, CentralCell=1};
|
|
|
|
|
2010-04-09 13:51:37 +00:00
|
|
|
//! Create a new operator
|
|
|
|
static Operator* New();
|
2010-03-01 08:19:39 +00:00
|
|
|
virtual ~Operator();
|
|
|
|
|
2014-01-06 14:40:39 +00:00
|
|
|
virtual Engine* CreateEngine();
|
|
|
|
virtual Engine* GetEngine() const {return m_Engine;}
|
2010-05-08 16:12:44 +00:00
|
|
|
|
2010-03-11 09:48:47 +00:00
|
|
|
virtual bool SetGeometryCSX(ContinuousStructure* geo);
|
2010-03-01 08:19:39 +00:00
|
|
|
|
2010-10-27 12:49:16 +00:00
|
|
|
virtual int CalcECOperator( DebugFlags debugFlags = None );
|
2010-03-01 08:19:39 +00:00
|
|
|
|
2010-10-20 05:26:16 +00:00
|
|
|
// the next four functions need to be reimplemented in a derived class
|
|
|
|
inline virtual FDTD_FLOAT GetVV( unsigned int n, unsigned int x, unsigned int y, unsigned int z ) const { return vv[n][x][y][z]; }
|
|
|
|
inline virtual FDTD_FLOAT GetVI( unsigned int n, unsigned int x, unsigned int y, unsigned int z ) const { return vi[n][x][y][z]; }
|
|
|
|
inline virtual FDTD_FLOAT GetII( unsigned int n, unsigned int x, unsigned int y, unsigned int z ) const { return ii[n][x][y][z]; }
|
|
|
|
inline virtual FDTD_FLOAT GetIV( unsigned int n, unsigned int x, unsigned int y, unsigned int z ) const { return iv[n][x][y][z]; }
|
2010-04-30 17:40:08 +00:00
|
|
|
|
2010-10-27 09:17:58 +00:00
|
|
|
// convenient access functions
|
|
|
|
inline virtual FDTD_FLOAT GetVV( unsigned int n, unsigned int pos[3] ) const { return GetVV(n,pos[0],pos[1],pos[2]); }
|
|
|
|
inline virtual FDTD_FLOAT GetVI( unsigned int n, unsigned int pos[3] ) const { return GetVI(n,pos[0],pos[1],pos[2]); }
|
|
|
|
inline virtual FDTD_FLOAT GetII( unsigned int n, unsigned int pos[3] ) const { return GetII(n,pos[0],pos[1],pos[2]); }
|
|
|
|
inline virtual FDTD_FLOAT GetIV( unsigned int n, unsigned int pos[3] ) const { return GetIV(n,pos[0],pos[1],pos[2]); }
|
|
|
|
|
2010-10-20 05:26:16 +00:00
|
|
|
// the next four functions need to be reimplemented in a derived class
|
|
|
|
inline virtual void SetVV( unsigned int n, unsigned int x, unsigned int y, unsigned int z, FDTD_FLOAT value ) { vv[n][x][y][z] = value; }
|
|
|
|
inline virtual void SetVI( unsigned int n, unsigned int x, unsigned int y, unsigned int z, FDTD_FLOAT value ) { vi[n][x][y][z] = value; }
|
|
|
|
inline virtual void SetII( unsigned int n, unsigned int x, unsigned int y, unsigned int z, FDTD_FLOAT value ) { ii[n][x][y][z] = value; }
|
|
|
|
inline virtual void SetIV( unsigned int n, unsigned int x, unsigned int y, unsigned int z, FDTD_FLOAT value ) { iv[n][x][y][z] = value; }
|
2010-04-30 17:40:08 +00:00
|
|
|
|
2010-03-05 13:20:25 +00:00
|
|
|
virtual void ApplyElectricBC(bool* dirs); //applied by default to all boundaries
|
|
|
|
virtual void ApplyMagneticBC(bool* dirs);
|
2010-03-01 08:19:39 +00:00
|
|
|
|
2012-05-08 11:58:20 +00:00
|
|
|
virtual void SetBCSize(int dir, int size) {m_BC_Size[dir]=size;}
|
|
|
|
virtual int GetBCSize(int dir) {return m_BC_Size[dir];}
|
|
|
|
|
2010-08-19 08:12:09 +00:00
|
|
|
//! Set a forced timestep to use by the operator
|
|
|
|
virtual void SetTimestep(double ts) {dT = ts;}
|
2012-09-27 12:20:20 +00:00
|
|
|
virtual void SetTimestepFactor(double factor);
|
2010-09-08 14:07:28 +00:00
|
|
|
bool GetTimestepValid() const {return !m_InvaildTimestep;}
|
2012-09-27 12:20:20 +00:00
|
|
|
|
2013-03-27 10:58:24 +00:00
|
|
|
//! Choose a time step method (0=auto, 1=CFL, 3=Rennings)
|
|
|
|
void SetTimeStepMethod(int var) {m_TimeStepVar=var;}
|
|
|
|
|
2013-12-28 20:02:49 +00:00
|
|
|
//! Set the material averaging method /sa MatAverageMethods
|
|
|
|
void SetMaterialAvgMethod(MatAverageMethods method);
|
|
|
|
|
|
|
|
//! Set material averaging method to the advanced quarter cell material interpolation (default)
|
|
|
|
void SetQuarterCellMaterialAvg() {m_MatAverageMethod=QuarterCell;}
|
|
|
|
|
2013-02-18 09:38:55 +00:00
|
|
|
//! Set operator to assume a constant material inside a cell (material probing in the cell center)
|
2013-12-28 20:02:49 +00:00
|
|
|
void SetCellConstantMaterial() {m_MatAverageMethod=CentralCell;}
|
2013-02-18 09:38:55 +00:00
|
|
|
|
2010-09-08 05:36:32 +00:00
|
|
|
virtual double GetNumberCells() const;
|
2010-03-01 13:56:27 +00:00
|
|
|
|
2012-07-16 15:15:10 +00:00
|
|
|
virtual unsigned int GetNumberOfNyquistTimesteps() const {return m_Exc->GetNyquistNum();}
|
2010-12-07 13:47:22 +00:00
|
|
|
|
2013-02-06 15:33:12 +00:00
|
|
|
virtual unsigned int GetNumberOfLines(int ny, bool full=false) const {UNUSED(full);return numLines[ny];}
|
2010-04-11 21:42:54 +00:00
|
|
|
|
2010-05-19 09:42:56 +00:00
|
|
|
virtual void ShowStat() const;
|
2010-07-11 21:45:41 +00:00
|
|
|
virtual void ShowExtStat() const;
|
2010-03-01 08:19:39 +00:00
|
|
|
|
2010-04-13 16:40:43 +00:00
|
|
|
virtual double GetGridDelta() const {return gridDelta;}
|
2010-03-01 08:19:39 +00:00
|
|
|
|
2010-07-16 08:41:12 +00:00
|
|
|
//! Get the disc line in \a n direction (in drawing units)
|
2010-04-13 16:40:43 +00:00
|
|
|
virtual double GetDiscLine(int n, unsigned int pos, bool dualMesh=false) const;
|
2010-07-15 10:12:52 +00:00
|
|
|
|
2012-06-25 11:20:04 +00:00
|
|
|
//! Get the disc line delta in \a n direction (in drawing units)
|
|
|
|
virtual double GetDiscDelta(int n, unsigned int pos, bool dualMesh=false) const;
|
|
|
|
|
2011-03-16 11:26:41 +00:00
|
|
|
//! Get the coordinates for a given node index and component, according to the yee-algorithm. Returns true if inside the FDTD domain.
|
|
|
|
virtual bool GetYeeCoords(int ny, unsigned int pos[3], double* coords, bool dualMesh) const;
|
|
|
|
|
2013-12-20 14:48:04 +00:00
|
|
|
virtual bool GetNodeCoords(const unsigned int pos[3], double* coords, bool dualMesh=false, CoordinateSystem c_system=UNDEFINED_CS) const;
|
2013-02-06 15:40:32 +00:00
|
|
|
|
2010-09-17 10:08:49 +00:00
|
|
|
//! Get the node width for a given direction \a n and a given mesh position \a pos
|
2010-12-08 15:55:27 +00:00
|
|
|
virtual double GetNodeWidth(int ny, const unsigned int pos[3], bool dualMesh = false) const {return GetEdgeLength(ny,pos,!dualMesh);}
|
2011-03-18 13:17:09 +00:00
|
|
|
//! Get the node width for a given direction \a n and a given mesh position \a pos
|
|
|
|
virtual double GetNodeWidth(int ny, const int pos[3], bool dualMesh = false) const;
|
2010-09-02 13:35:13 +00:00
|
|
|
|
2010-09-17 10:08:49 +00:00
|
|
|
//! Get the node area for a given direction \a n and a given mesh position \a pos
|
2010-09-17 12:51:07 +00:00
|
|
|
virtual double GetNodeArea(int ny, const unsigned int pos[3], bool dualMesh = false) const;
|
2011-03-18 13:17:09 +00:00
|
|
|
//! Get the node area for a given direction \a n and a given mesh position \a pos
|
|
|
|
virtual double GetNodeArea(int ny, const int pos[3], bool dualMesh = false) const;
|
2010-07-29 16:30:50 +00:00
|
|
|
|
2010-09-17 10:08:49 +00:00
|
|
|
//! Get the length of an FDTD edge (unit is meter).
|
2010-12-08 15:55:27 +00:00
|
|
|
virtual double GetEdgeLength(int ny, const unsigned int pos[3], bool dualMesh = false) const;
|
2010-09-02 13:35:13 +00:00
|
|
|
|
2012-04-27 14:31:36 +00:00
|
|
|
//! Get the volume of an FDTD cell
|
|
|
|
virtual double GetCellVolume(const unsigned int pos[3], bool dualMesh = false) const;
|
|
|
|
|
2022-03-11 21:17:27 +00:00
|
|
|
//! Get the area around an edge for a given direction \a n and a given mesh position \a pos
|
2010-09-02 13:35:13 +00:00
|
|
|
/*!
|
|
|
|
This will return the area around an edge with a given direction, measured at the middle of the edge.
|
|
|
|
In a cartesian mesh this is equal to the NodeArea, may be different in other coordinate systems.
|
|
|
|
*/
|
2010-09-17 12:51:07 +00:00
|
|
|
virtual double GetEdgeArea(int ny, const unsigned int pos[3], bool dualMesh = false) const {return GetNodeArea(ny,pos,dualMesh);}
|
2010-09-02 13:35:13 +00:00
|
|
|
|
2013-02-06 15:33:12 +00:00
|
|
|
virtual unsigned int SnapToMeshLine(int ny, double coord, bool &inside, bool dualMesh=false, bool fullMesh=false) const;
|
2011-04-27 11:01:02 +00:00
|
|
|
|
2022-03-11 21:17:27 +00:00
|
|
|
//! Snap the given coordinates to mesh indices
|
2013-02-06 15:33:12 +00:00
|
|
|
virtual bool SnapToMesh(const double* coord, unsigned int* uicoord, bool dualMesh=false, bool fullMesh=false, bool* inside=NULL) const;
|
2010-03-01 18:35:28 +00:00
|
|
|
|
2011-07-22 07:58:02 +00:00
|
|
|
//! Snap a given box to the FDTD mesh
|
2013-02-06 15:33:12 +00:00
|
|
|
virtual int SnapBox2Mesh(const double* start, const double* stop, unsigned int* uiStart, unsigned int* uiStop, bool dualMesh=false, bool fullMesh=false, int SnapMethod=0, bool* bStartIn=NULL, bool* bStopIn=NULL) const;
|
2011-07-22 07:58:02 +00:00
|
|
|
|
2013-06-05 12:56:34 +00:00
|
|
|
//! Snap a given line to the operator mesh
|
|
|
|
/*!
|
|
|
|
\param[in] start coorindate of the line
|
|
|
|
\param[in] stop coorindate of the line
|
|
|
|
\param[out] uiStart the snapped line-start coorindate index
|
|
|
|
\param[out] uiStop the snapped line-stop coorindate index
|
|
|
|
\param[in] dualMesh snap to main or dual mesh (default is main mesh)
|
|
|
|
\return returns a status, 0 = success, 1 = start outside, 2 = stop outside, 3 = both outside
|
|
|
|
*/
|
|
|
|
virtual int SnapLine2Mesh(const double* start, const double* stop, unsigned int* uiStart, unsigned int* uiStop, bool dualMesh=false, bool fullMesh=false) const;
|
|
|
|
|
2010-04-25 19:59:05 +00:00
|
|
|
virtual void AddExtension(Operator_Extension* op_ext);
|
2011-07-25 12:57:09 +00:00
|
|
|
virtual void DeleteExtension(Operator_Extension* op_ext);
|
2010-04-27 21:06:42 +00:00
|
|
|
virtual size_t GetNumberOfExtentions() const {return m_Op_exts.size();}
|
|
|
|
virtual Operator_Extension* GetExtension(size_t index) const {return m_Op_exts.at(index);}
|
2010-04-25 19:59:05 +00:00
|
|
|
|
2011-01-07 09:45:26 +00:00
|
|
|
virtual void CleanupMaterialStorage();
|
|
|
|
|
2011-01-31 11:22:21 +00:00
|
|
|
virtual double GetDiscMaterial(int type, int ny, const unsigned int pos[3]) const;
|
|
|
|
|
2013-12-20 14:48:04 +00:00
|
|
|
//! Get the cell center coordinate usable for material averaging (Warning, may not be the yee cell center)
|
2013-12-28 19:57:31 +00:00
|
|
|
virtual bool GetCellCenterMaterialAvgCoord(const int pos[3], double coord[3]) const;
|
2013-12-20 14:48:04 +00:00
|
|
|
|
2012-07-17 11:23:00 +00:00
|
|
|
virtual void SetExcitationSignal(Excitation* exc);
|
|
|
|
virtual Excitation* GetExcitationSignal() const {return m_Exc;}
|
2012-07-16 15:15:10 +00:00
|
|
|
|
2012-07-17 11:23:00 +00:00
|
|
|
Operator_Ext_Excitation* GetExcitationExtension() const;
|
2012-07-16 15:15:10 +00:00
|
|
|
|
2012-07-23 10:10:35 +00:00
|
|
|
virtual double CalcNumericPhaseVelocity(unsigned int start[3], unsigned int stop[3], double propDir[3], float freq) const;
|
|
|
|
|
2014-10-19 19:59:39 +00:00
|
|
|
virtual vector<CSPrimitives*> GetPrimitivesBoundBox(int posX, int posY, int posZ, CSProperties::PropertyType type=CSProperties::ANY) const;
|
|
|
|
|
2010-03-01 08:19:39 +00:00
|
|
|
protected:
|
2010-04-09 13:51:37 +00:00
|
|
|
//! use New() for creating a new Operator
|
|
|
|
Operator();
|
|
|
|
|
2010-03-01 08:19:39 +00:00
|
|
|
virtual void Init();
|
2011-01-24 10:11:45 +00:00
|
|
|
void Delete();
|
2010-04-13 16:40:43 +00:00
|
|
|
virtual void Reset();
|
2010-03-05 13:20:25 +00:00
|
|
|
virtual void InitOperator();
|
2011-01-07 09:45:26 +00:00
|
|
|
virtual void InitDataStorage();
|
2010-03-05 13:20:25 +00:00
|
|
|
|
2011-03-18 13:17:09 +00:00
|
|
|
virtual bool SetupCSXGrid(CSRectGrid* grid);
|
|
|
|
|
2013-08-16 11:19:12 +00:00
|
|
|
virtual Grid_Path FindPath(double start[], double stop[]);
|
2010-03-22 07:19:17 +00:00
|
|
|
|
2010-10-27 09:17:58 +00:00
|
|
|
// debug
|
|
|
|
virtual void DumpOperator2File(string filename);
|
|
|
|
virtual void DumpMaterial2File(string filename);
|
2013-03-27 11:02:08 +00:00
|
|
|
virtual void DumpPEC2File( string filename, unsigned int *range = NULL );
|
2010-10-27 09:17:58 +00:00
|
|
|
|
2010-06-05 23:47:32 +00:00
|
|
|
unsigned int m_Nr_PEC[3]; //count PEC edges
|
2010-03-05 13:20:25 +00:00
|
|
|
virtual bool CalcPEC();
|
2010-06-05 23:47:32 +00:00
|
|
|
virtual void CalcPEC_Range(unsigned int startX, unsigned int stopX, unsigned int* counter); //internal to CalcPEC
|
2010-06-05 22:53:05 +00:00
|
|
|
virtual void CalcPEC_Curves(); //internal to CalcPEC
|
2010-03-05 13:20:25 +00:00
|
|
|
|
2010-03-01 08:19:39 +00:00
|
|
|
//Calc timestep only internal use
|
2011-02-16 14:28:14 +00:00
|
|
|
int m_TimeStepVar;
|
2012-09-27 12:20:20 +00:00
|
|
|
double m_TimeStepFactor;
|
2010-03-05 13:20:25 +00:00
|
|
|
virtual double CalcTimestep();
|
2010-09-02 20:12:03 +00:00
|
|
|
double opt_dT;
|
2010-09-08 14:07:28 +00:00
|
|
|
bool m_InvaildTimestep;
|
2010-07-13 13:37:56 +00:00
|
|
|
string m_Used_TS_Name;
|
2010-03-05 13:20:25 +00:00
|
|
|
|
2010-06-22 10:49:51 +00:00
|
|
|
double CalcTimestep_Var1();
|
|
|
|
double CalcTimestep_Var3();
|
|
|
|
|
2011-03-18 13:17:09 +00:00
|
|
|
//! Calculate the FDTD equivalent circuit parameter for the given position and direction ny. \sa Calc_EffMat_Pos
|
2014-10-19 19:59:39 +00:00
|
|
|
virtual bool Calc_ECPos(int ny, const unsigned int* pos, double* EC, vector<CSPrimitives *> vPrims) const;
|
2011-03-18 13:17:09 +00:00
|
|
|
|
|
|
|
//! Get the FDTD raw disc delta, needed by Calc_EffMatPos() \sa Calc_EffMatPos
|
|
|
|
/*!
|
|
|
|
Get the raw disc delta for a given position and direction.
|
|
|
|
The result will be positive if a disc delta inside the simulation domain is requested.
|
2022-03-11 21:17:27 +00:00
|
|
|
The result will be the negative value of the first or last disc delta respectively if the position is outside the field domain.
|
2011-03-18 13:17:09 +00:00
|
|
|
*/
|
|
|
|
virtual double GetRawDiscDelta(int ny, const int pos) const;
|
|
|
|
|
|
|
|
//! Get the material at a given coordinate, direction and type from CSX (internal use only)
|
2014-10-19 19:59:39 +00:00
|
|
|
virtual double GetMaterial(int ny, const double coords[3], int MatType, vector<CSPrimitives*> vPrims, bool markAsUsed=true) const;
|
2011-03-18 13:17:09 +00:00
|
|
|
|
2013-12-28 20:02:49 +00:00
|
|
|
MatAverageMethods m_MatAverageMethod;
|
2013-02-18 09:38:55 +00:00
|
|
|
|
2011-03-18 13:17:09 +00:00
|
|
|
//! Calculate the effective/averaged material properties at the given position and direction ny.
|
2014-10-19 19:59:39 +00:00
|
|
|
virtual bool Calc_EffMatPos(int ny, const unsigned int* pos, double* EffMat, vector<CSPrimitives*> vPrims) const;
|
2011-03-18 13:17:09 +00:00
|
|
|
|
2014-10-19 19:59:39 +00:00
|
|
|
virtual bool AverageMatCellCenter(int ny, const unsigned int* pos, double* EffMat, vector<CSPrimitives*> vPrims) const;
|
|
|
|
virtual bool AverageMatQuarterCell(int ny, const unsigned int* pos, double* EffMat, vector<CSPrimitives*> vPrims) const;
|
2013-12-28 20:02:49 +00:00
|
|
|
|
2010-07-16 08:41:12 +00:00
|
|
|
//! Calc operator at certain \a pos
|
2010-04-21 13:43:39 +00:00
|
|
|
virtual void Calc_ECOperatorPos(int n, unsigned int* pos);
|
2010-04-09 13:51:37 +00:00
|
|
|
|
2011-04-08 07:59:48 +00:00
|
|
|
//! Calculate and setup lumped elements
|
|
|
|
virtual bool Calc_LumpedElements();
|
|
|
|
|
2012-05-08 11:58:20 +00:00
|
|
|
//! Store the size of the applied boundary conditions
|
|
|
|
int m_BC_Size[6];
|
|
|
|
|
2011-01-07 09:45:26 +00:00
|
|
|
//store material properties for post-processing
|
|
|
|
float**** m_epsR;
|
|
|
|
float**** m_kappa;
|
|
|
|
float**** m_mueR;
|
|
|
|
float**** m_sigma;
|
|
|
|
|
2010-03-05 13:20:25 +00:00
|
|
|
//EC elements, internal only!
|
2010-06-05 09:47:21 +00:00
|
|
|
virtual void Init_EC();
|
2010-04-09 13:51:37 +00:00
|
|
|
virtual bool Calc_EC();
|
2014-10-19 19:59:39 +00:00
|
|
|
virtual void Calc_EC_Range(unsigned int xStart, unsigned int xStop);
|
2012-07-12 08:06:13 +00:00
|
|
|
FDTD_FLOAT* EC_C[3];
|
|
|
|
FDTD_FLOAT* EC_G[3];
|
|
|
|
FDTD_FLOAT* EC_L[3];
|
|
|
|
FDTD_FLOAT* EC_R[3];
|
2010-03-26 10:28:54 +00:00
|
|
|
|
2010-04-02 15:07:56 +00:00
|
|
|
AdrOp* MainOp;
|
2010-03-26 10:28:54 +00:00
|
|
|
|
2010-04-25 19:59:05 +00:00
|
|
|
vector<Operator_Extension*> m_Op_exts;
|
|
|
|
|
2014-01-06 14:40:39 +00:00
|
|
|
Engine* m_Engine;
|
|
|
|
|
2012-07-16 15:15:10 +00:00
|
|
|
// excitation classes
|
|
|
|
Excitation* m_Exc; // excitation time signal class
|
2012-07-17 11:23:00 +00:00
|
|
|
// Operator_Ext_Excitation* m_Op_Ext_Exc; // excitation extension
|
2012-07-16 15:15:10 +00:00
|
|
|
|
2010-04-13 16:40:43 +00:00
|
|
|
// engine/post-proc needs access
|
|
|
|
public:
|
2010-03-26 10:28:54 +00:00
|
|
|
//EC operator
|
|
|
|
FDTD_FLOAT**** vv; //calc new voltage from old voltage
|
|
|
|
FDTD_FLOAT**** vi; //calc new voltage from old current
|
|
|
|
FDTD_FLOAT**** ii; //calc new current from old current
|
|
|
|
FDTD_FLOAT**** iv; //calc new current from old voltage
|
2010-03-01 08:19:39 +00:00
|
|
|
};
|
|
|
|
|
2010-10-27 09:17:58 +00:00
|
|
|
inline Operator::DebugFlags operator|( Operator::DebugFlags a, Operator::DebugFlags b ) { return static_cast<Operator::DebugFlags>(static_cast<int>(a) | static_cast<int>(b)); }
|
|
|
|
inline Operator::DebugFlags& operator|=( Operator::DebugFlags& a, const Operator::DebugFlags& b ) { return a = a | b; }
|
|
|
|
|
2010-03-01 08:19:39 +00:00
|
|
|
#endif // OPERATOR_H
|