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/>.
|
|
|
|
*/
|
|
|
|
|
2010-03-01 18:35:28 +00:00
|
|
|
#include "processing.h"
|
|
|
|
|
|
|
|
Processing::Processing(Operator* op, Engine* eng)
|
|
|
|
{
|
|
|
|
Op=op;
|
|
|
|
Eng=eng;
|
2010-03-04 15:54:16 +00:00
|
|
|
Enabled = true;
|
2010-04-03 15:36:50 +00:00
|
|
|
m_PS_pos = 0;
|
|
|
|
ProcessInterval=0;
|
2010-03-01 18:35:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Processing::~Processing()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-04-03 15:36:50 +00:00
|
|
|
void Processing::Reset()
|
|
|
|
{
|
|
|
|
m_PS_pos=0;
|
|
|
|
}
|
|
|
|
|
2010-03-10 11:15:14 +00:00
|
|
|
bool Processing::CheckTimestep()
|
|
|
|
{
|
2010-04-03 15:36:50 +00:00
|
|
|
if (m_ProcessSteps.size()>m_PS_pos)
|
|
|
|
{
|
|
|
|
if (m_ProcessSteps.at(m_PS_pos)==Eng->GetNumberOfTimesteps())
|
|
|
|
{
|
|
|
|
++m_PS_pos;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ProcessInterval)
|
|
|
|
{
|
|
|
|
if (Eng->GetNumberOfTimesteps()%ProcessInterval==0) return true;
|
|
|
|
}
|
2010-03-10 11:15:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-04-03 15:36:50 +00:00
|
|
|
int Processing::GetNextInterval() const
|
2010-03-10 11:15:14 +00:00
|
|
|
{
|
|
|
|
if (Enabled==false) return -1;
|
2010-04-03 15:36:50 +00:00
|
|
|
unsigned int next=-1;
|
|
|
|
if (m_ProcessSteps.size()>m_PS_pos)
|
|
|
|
{
|
|
|
|
next = m_ProcessSteps.at(m_PS_pos)-Eng->GetNumberOfTimesteps();
|
|
|
|
}
|
|
|
|
if (ProcessInterval==0) return next;
|
|
|
|
unsigned int next_Interval = ProcessInterval - Eng->GetNumberOfTimesteps()%ProcessInterval;
|
|
|
|
if (next_Interval<next)
|
|
|
|
next = next_Interval;
|
|
|
|
return next;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Processing::AddStep(unsigned int step)
|
|
|
|
{
|
|
|
|
if (m_ProcessSteps.size()==0)
|
|
|
|
m_ProcessSteps.push_back(step);
|
|
|
|
else if (find(m_ProcessSteps.begin(), m_ProcessSteps.end(),step)==m_ProcessSteps.end())
|
|
|
|
m_ProcessSteps.push_back(step);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Processing::AddSteps(vector<unsigned int> steps)
|
|
|
|
{
|
|
|
|
for (size_t n=0;n<steps.size();++n)
|
|
|
|
{
|
|
|
|
AddStep(steps.at(n));
|
|
|
|
}
|
2010-03-10 11:15:14 +00:00
|
|
|
}
|
2010-03-01 18:35:28 +00:00
|
|
|
|
2010-03-02 13:54:50 +00:00
|
|
|
void Processing::DefineStartStopCoord(double* dstart, double* dstop)
|
|
|
|
{
|
2010-04-09 13:58:15 +00:00
|
|
|
if (Op->SnapToMesh(dstart,start)==false) cerr << "Processing::DefineStartStopCoord: Warning: Snapped line outside field domain!!" << endl;
|
|
|
|
if (Op->SnapToMesh(dstop,stop)==false) cerr << "Processing::DefineStartStopCoord: Warning: Snapped line outside field domain!!" << endl;
|
2010-03-01 18:35:28 +00:00
|
|
|
}
|
2010-03-02 13:54:50 +00:00
|
|
|
|
2010-03-11 09:48:00 +00:00
|
|
|
double Processing::CalcLineIntegral(unsigned int* start, unsigned int* stop, int field)
|
|
|
|
{
|
|
|
|
double result=0;
|
|
|
|
FDTD_FLOAT**** array;
|
|
|
|
if (field==0)
|
2010-03-29 08:01:38 +00:00
|
|
|
array=Eng->GetVoltages();
|
2010-03-11 09:48:00 +00:00
|
|
|
else if (field==1)
|
2010-03-29 08:01:38 +00:00
|
|
|
array=Eng->GetCurrents();
|
2010-03-11 09:48:00 +00:00
|
|
|
else return 0.0;
|
|
|
|
|
|
|
|
for (int n=0;n<3;++n)
|
|
|
|
{
|
|
|
|
if (start[n]<stop[n])
|
|
|
|
{
|
2010-03-16 20:41:17 +00:00
|
|
|
unsigned int pos[3]={start[0],start[1],start[2]};
|
2010-03-11 09:48:00 +00:00
|
|
|
for (;pos[n]<stop[n];++pos[n])
|
|
|
|
{
|
|
|
|
result+=array[n][pos[0]][pos[1]][pos[2]];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-03-16 20:41:17 +00:00
|
|
|
unsigned int pos[3]={stop[0],stop[1],stop[2]};
|
|
|
|
for (;pos[n]<start[n];++pos[n])
|
|
|
|
{
|
2010-03-11 09:48:00 +00:00
|
|
|
result-=array[n][pos[0]][pos[1]][pos[2]];
|
2010-03-16 20:41:17 +00:00
|
|
|
}
|
2010-03-11 09:48:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2010-03-10 11:15:14 +00:00
|
|
|
|
|
|
|
void ProcessingArray::AddProcessing(Processing* proc)
|
|
|
|
{
|
|
|
|
ProcessArray.push_back(proc);
|
|
|
|
}
|
|
|
|
|
2010-04-03 15:36:50 +00:00
|
|
|
void ProcessingArray::Reset()
|
|
|
|
{
|
|
|
|
for (size_t i=0;i<ProcessArray.size();++i)
|
|
|
|
{
|
|
|
|
ProcessArray.at(i)->Reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-10 11:15:14 +00:00
|
|
|
void ProcessingArray::DeleteAll()
|
|
|
|
{
|
|
|
|
for (size_t i=0;i<ProcessArray.size();++i)
|
|
|
|
{
|
|
|
|
delete ProcessArray.at(i);
|
|
|
|
}
|
|
|
|
ProcessArray.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
int ProcessingArray::Process()
|
|
|
|
{
|
2010-03-15 21:19:51 +00:00
|
|
|
int nextProcess=maxInterval;
|
2010-03-10 11:15:14 +00:00
|
|
|
//this could be done nicely in parallel??
|
|
|
|
for (size_t i=0;i<ProcessArray.size();++i)
|
|
|
|
{
|
|
|
|
int step = ProcessArray.at(i)->Process();
|
|
|
|
if ((step>0) && (step<nextProcess))
|
|
|
|
nextProcess=step;
|
|
|
|
}
|
|
|
|
return nextProcess;
|
|
|
|
}
|