openEMS/FDTD/processing.h

105 lines
2.7 KiB
C
Raw Normal View History

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/>.
*/
#ifndef PROCESSING_H
#define PROCESSING_H
#include <iostream>
#include <fstream>
#include "operator.h"
#include "engine.h"
class Processing
{
public:
Processing(Operator* op, Engine* eng);
virtual ~Processing();
virtual void Reset();
virtual void DefineStartStopCoord(double* dstart, double* dstop);
2010-04-01 07:38:08 +00:00
void SetProcessInterval(unsigned int interval) {ProcessInterval=max((unsigned int)1,interval);}
void AddStep(unsigned int step);
void AddSteps(vector<unsigned int> steps);
bool CheckTimestep();
virtual int Process() {return GetNextInterval();}
2010-03-02 18:01:03 +00:00
//! If Disabled Process() will do nothing...
virtual void SetEnable(bool val) {Enabled=val;}
//! If Disabled Process() will do nothing...
virtual bool GetEnable() const {return Enabled;}
2010-03-02 18:01:03 +00:00
2010-04-12 07:38:24 +00:00
//! Set the dump precision
void SetPrecision(unsigned int val) {m_precision = val;}
2010-04-19 14:09:41 +00:00
virtual void OpenFile( string outfile );
virtual void DumpBox2File( string vtkfilenameprefix, bool dualMesh = false ) const; //!< dump geometry to file
protected:
Operator* Op;
Engine* Eng;
2010-04-12 07:38:24 +00:00
unsigned int m_precision;
2010-03-02 18:01:03 +00:00
bool Enabled;
int GetNextInterval() const;
unsigned int ProcessInterval;
size_t m_PS_pos; //! current position in list of processing steps
vector<unsigned int> m_ProcessSteps; //! list of processing steps
//! define/store snapped start/stop coords as mesh index
unsigned int start[3];
unsigned int stop[3];
2010-03-11 09:48:00 +00:00
//! define/store if snapped start/stop coords are inside the field domain
bool m_start_inside[3];
bool m_stop_inside[3];
2010-04-19 14:09:41 +00:00
ofstream file;
string m_filename;
2010-03-11 09:48:00 +00:00
double CalcLineIntegral(unsigned int* start, unsigned int* stop, int field);
};
class ProcessingArray
{
public:
ProcessingArray(unsigned int maximalInterval) {maxInterval=maximalInterval;}
~ProcessingArray() {};
void AddProcessing(Processing* proc);
void Reset();
//! Deletes all given processing's, can be helpful, but use carefull!!!
void DeleteAll();
int Process();
2010-04-19 14:09:41 +00:00
void DumpBoxes2File( string vtkfilenameprefix ) const;
protected:
unsigned int maxInterval;
vector<Processing*> ProcessArray;
};
#endif // PROCESSING_H