89 lines
3.2 KiB
C++
89 lines
3.2 KiB
C++
/*
|
|
* 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_UPML_H
|
|
#define OPERATOR_EXT_UPML_H
|
|
|
|
#include "operator.h"
|
|
#include "operator_extension.h"
|
|
|
|
class FunctionParser;
|
|
|
|
//! Operator extension implemention an uniaxial perfectly matched layer (upml)
|
|
/*
|
|
The priority for this extension should be the highest of all extensions since this operator will use the main engine to perform vital parts in the upml implementation.
|
|
Therefore the voltages and currents as well as the operator are replaced during these update process.
|
|
This extension is propably incompatible with the most other extensions operating in the same regions.
|
|
*/
|
|
class Operator_Ext_UPML : public Operator_Extension
|
|
{
|
|
friend class Engine_Ext_UPML;
|
|
public:
|
|
virtual ~Operator_Ext_UPML();
|
|
|
|
void SetBoundaryCondition(int* BCs, unsigned int size[6]) {for (int n=0;n<6;++n) {m_BC[n]=BCs[n];m_Size[n]=size[n];}}
|
|
|
|
void SetRange(const unsigned int start[3], const unsigned int stop[3]) {for (int n=0;n<3;++n) {m_StartPos[n]=start[n];m_numLines[n]=stop[n]-start[n]+1;}}
|
|
|
|
//! Set the grading function for the pml
|
|
/*!
|
|
Define the pml grading grading function.
|
|
Predefined variables in this grading function are:
|
|
D = depth in the pml in meter
|
|
dl = mesh delta inside the pml in meter
|
|
W = width (length) of the pml in meter
|
|
N = number of cells for the pml
|
|
Z = wave impedance at the current depth and position
|
|
example: SetGradingFunction("-log(1e-6)*log(2.5)/(2*dl*pow(2.5,W/dl)-1) * pow(2.5, D/dl) / Z");
|
|
|
|
An empty function string will be ignored.
|
|
*/
|
|
virtual bool SetGradingFunction(string func);
|
|
|
|
virtual bool BuildExtension();
|
|
|
|
virtual Engine_Extension* CreateEngineExtention();
|
|
|
|
virtual string GetExtensionName() const {return string("Uniaxial PML Extension");}
|
|
|
|
//! Create the UPML
|
|
static bool Create_UPML(Operator* op, int BC[6], unsigned int size[6], string gradFunc);
|
|
|
|
protected:
|
|
Operator_Ext_UPML(Operator* op);
|
|
int m_BC[6];
|
|
unsigned int m_Size[6];
|
|
|
|
unsigned int m_StartPos[3];
|
|
unsigned int m_numLines[3];
|
|
|
|
string m_GradFunc;
|
|
FunctionParser* m_GradingFunction;
|
|
|
|
void CalcGradingKappa(int ny, unsigned int pos[3], double Zm[3], double kappa_v[3], double kappa_i[3]);
|
|
|
|
void DeleteOp();
|
|
FDTD_FLOAT**** vv; //calc new voltage from old voltage
|
|
FDTD_FLOAT**** vvfo; //calc new voltage from old voltage flux
|
|
FDTD_FLOAT**** vvfn; //calc new voltage from new voltage flux
|
|
FDTD_FLOAT**** ii; //calc new current from old current
|
|
FDTD_FLOAT**** iifo; //calc new current from old current flux
|
|
FDTD_FLOAT**** iifn; //calc new current from new current flux
|
|
};
|
|
|
|
#endif // OPERATOR_EXT_UPML_H
|