2010-07-06 08:01:26 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OPERATOR_EXT_LORENTZMATERIAL_H
|
|
|
|
#define OPERATOR_EXT_LORENTZMATERIAL_H
|
|
|
|
|
2010-12-06 14:30:47 +00:00
|
|
|
#include "FDTD/operator.h"
|
2010-07-06 08:01:26 +00:00
|
|
|
#include "operator_ext_dispersive.h"
|
|
|
|
|
|
|
|
class Operator_Ext_LorentzMaterial : public Operator_Ext_Dispersive
|
|
|
|
{
|
|
|
|
friend class Engine_Ext_LorentzMaterial;
|
|
|
|
public:
|
|
|
|
Operator_Ext_LorentzMaterial(Operator* op);
|
|
|
|
virtual ~Operator_Ext_LorentzMaterial();
|
|
|
|
|
|
|
|
virtual bool BuildExtension();
|
|
|
|
|
|
|
|
virtual Engine_Extension* CreateEngineExtention();
|
|
|
|
|
2012-06-06 08:29:57 +00:00
|
|
|
virtual bool IsCylinderCoordsSave(bool closedAlpha, bool R0_included) const {return true;}
|
2010-07-06 08:01:26 +00:00
|
|
|
|
2012-05-11 08:47:45 +00:00
|
|
|
virtual string GetExtensionName() const {return string("Drude/Lorentz Dispersive Material Extension");}
|
2010-07-11 21:45:41 +00:00
|
|
|
|
|
|
|
virtual void ShowStat(ostream &ostr) const;
|
2010-07-06 08:01:26 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2012-04-24 09:05:19 +00:00
|
|
|
//ADE update coefficients, array setup: coeff[N_order][direction][mesh_pos_index]
|
|
|
|
FDTD_FLOAT ***v_int_ADE;
|
|
|
|
FDTD_FLOAT ***v_ext_ADE;
|
|
|
|
FDTD_FLOAT ***i_int_ADE;
|
|
|
|
FDTD_FLOAT ***i_ext_ADE;
|
2010-07-06 08:01:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // OPERATOR_EXT_LORENTZMATERIAL_H
|