67 lines
2.0 KiB
C++
67 lines
2.0 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_CYLINDER_H
|
|
#define OPERATOR_CYLINDER_H
|
|
|
|
#include "operator.h"
|
|
|
|
class Operator_Cylinder : public Operator
|
|
{
|
|
public:
|
|
static Operator_Cylinder* New();
|
|
virtual ~Operator_Cylinder();
|
|
|
|
virtual bool SetGeometryCSX(ContinuousStructure* geo);
|
|
|
|
virtual int CalcECOperator();
|
|
|
|
virtual void ApplyElectricBC(bool* dirs);
|
|
virtual void ApplyMagneticBC(bool* dirs);
|
|
|
|
virtual unsigned int GetNumberOfLines(int ny) const;
|
|
|
|
//! Get the name for the given direction: 0 -> rho, 1 -> alpha, 2 -> z
|
|
virtual string GetDirName(int ny) const;
|
|
|
|
//! Get the mesh delta times the grid delta for a 3D position, including radius corrected alpha-mesh width
|
|
virtual double GetMeshDelta(int n, const int* pos, bool dualMesh=false) const;
|
|
|
|
bool GetClosedAlpha() const {return CC_closedAlpha;}
|
|
bool GetR0Included() const {return CC_R0_included;}
|
|
|
|
protected:
|
|
Operator_Cylinder();
|
|
virtual void Init();
|
|
virtual void InitOperator();
|
|
virtual void Reset();
|
|
|
|
bool CC_closedAlpha;
|
|
bool CC_R0_included;
|
|
|
|
virtual bool Calc_ECPos(int n, unsigned int* pos, double* inEC);
|
|
virtual bool Calc_EffMatPos(int n, unsigned int* pos, double* inMat);
|
|
|
|
public:
|
|
//special EC operator for R0
|
|
FDTD_FLOAT* vv_R0; //calc new voltage from old voltage
|
|
FDTD_FLOAT* vi_R0; //calc new voltage from old current
|
|
|
|
};
|
|
|
|
#endif // OPERATOR_CYLINDER_H
|