summaryrefslogtreecommitdiff
path: root/openEMS/FDTD/engine_cylindermultigrid.h
blob: 66f337fa884e34ed815f7b89b817c94659f52b50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
*	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 ENGINE_CYLINDERMULTIGRID_H
#define ENGINE_CYLINDERMULTIGRID_H

#include "engine_cylinder.h"

class Operator_CylinderMultiGrid;
class Engine_CylinderMultiGrid_Thread;
class Engine_Ext_CylinderMultiGrid;

class Engine_CylinderMultiGrid : public Engine_Cylinder
{
	friend class Engine_Ext_CylinderMultiGrid;
public:
//	Engine_CylinderMultiGrid();

	static Engine_CylinderMultiGrid* New(const Operator_CylinderMultiGrid* op, unsigned int numThreads = 0);
	virtual ~Engine_CylinderMultiGrid();

	virtual void InterpolVoltChild2Base(unsigned int rPos);
	virtual void InterpolCurrChild2Base(unsigned int rPos);

	virtual void Init();

	//! Iterate \a iterTS number of timesteps
	virtual bool IterateTS(unsigned int iterTS);

protected:
	Engine_CylinderMultiGrid(const Operator_CylinderMultiGrid* op);
	const Operator_CylinderMultiGrid* Op_CMG;

	Engine_Multithread* m_InnerEngine;

	volatile unsigned int m_Thread_NumTS;
	boost::thread_group m_IteratorThread_Group;
	boost::barrier *m_startBarrier;
	boost::barrier *m_stopBarrier;
	Engine_CylinderMultiGrid_Thread* m_IteratorThread;
	Engine_CylinderMultiGrid_Thread* m_InnerIteratorThread;

	//extension barrier
	boost::barrier *m_WaitOnBase;
	boost::barrier *m_WaitOnChild;
	boost::barrier *m_WaitOnSync;

	Engine_Ext_CylinderMultiGrid* m_Eng_Ext_MG;

#ifdef MPI_SUPPORT
	virtual void SendReceiveVoltages();
	virtual void SendReceiveCurrents();
#endif
};


class Engine_CylinderMultiGrid_Thread
{
public:
	Engine_CylinderMultiGrid_Thread( Engine_Multithread* engine, boost::barrier *start, boost::barrier *stop, volatile unsigned int* numTS, bool isBase);
	void operator()();

protected:
	Engine_Multithread *m_Eng;
	bool m_isBase;
	boost::barrier *m_startBarrier;
	boost::barrier *m_stopBarrier;
	volatile unsigned int *m_numTS;
};

#endif // ENGINE_CYLINDERMULTIGRID_H