openEMS/Common/process_hfield.h
Thorsten Liebig dff20e51cd processing: new type name and header dump in integral processing
- new type name for each processing class (used in some file descriptions)
- new integral name in ProcessIntegral for every result row --> used in file header

Signed-off-by: Thorsten Liebig <Thorsten.Liebig@gmx.de>
2011-01-18 10:34:13 +01:00

44 lines
1.3 KiB
C++

/*
* Copyright (C) 2010 Sebastian Held (sebastian.held@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 PROCESS_HFIELD_H
#define PROCESS_HFIELD_H
#include "process_efield.h"
/*! \brief Process H-field at a point
This class calculates the E-field at a point in the FDTD lattice.
Other primitives than \c Point are not supported.
*/
class ProcessHField : public ProcessEField
{
public:
ProcessHField(Engine_Interface_Base* eng_if, Engine* eng);
virtual ~ProcessHField();
virtual string GetProcessingName() const {return "magnetic field probe";}
virtual string GetIntegralName(int row) const;
virtual void InitProcess();
void DefineStartStopCoord(double* dstart, double* dstop);
virtual int Process();
};
#endif // PROCESS_HFIELD_H