2010-09-08 05:36:32 +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/>.
*/
# include "operator_cylindermultigrid.h"
# include "engine_cylindermultigrid.h"
2010-12-06 14:30:47 +00:00
# include "extensions/operator_ext_cylinder.h"
2010-10-05 15:24:36 +00:00
# include "tools/useful.h"
2010-09-08 05:36:32 +00:00
Operator_CylinderMultiGrid : : Operator_CylinderMultiGrid ( vector < double > Split_Radii ) : Operator_Cylinder ( )
{
2010-09-08 14:07:28 +00:00
m_Split_Radii = Split_Radii ;
m_Split_Rad = m_Split_Radii . back ( ) ;
m_Split_Radii . pop_back ( ) ;
2010-09-08 05:36:32 +00:00
}
Operator_CylinderMultiGrid : : ~ Operator_CylinderMultiGrid ( )
{
}
Operator_CylinderMultiGrid * Operator_CylinderMultiGrid : : New ( vector < double > Split_Radii , unsigned int numThreads )
{
cout < < " Create cylindrical multi grid FDTD operator " < < endl ;
Operator_CylinderMultiGrid * op = new Operator_CylinderMultiGrid ( Split_Radii ) ;
op - > setNumThreads ( numThreads ) ;
op - > Init ( ) ;
return op ;
}
Engine * Operator_CylinderMultiGrid : : CreateEngine ( ) const
{
Engine_CylinderMultiGrid * eng = Engine_CylinderMultiGrid : : New ( this , m_numThreads ) ;
return eng ;
}
double Operator_CylinderMultiGrid : : GetNumberCells ( ) const
{
if ( numLines )
return ( numLines [ 0 ] - m_Split_Pos ) * ( numLines [ 1 ] ) * ( numLines [ 2 ] ) + m_InnerOp - > GetNumberCells ( ) ;
return 0 ;
}
bool Operator_CylinderMultiGrid : : SetGeometryCSX ( ContinuousStructure * geo )
{
if ( Operator_Cylinder : : SetGeometryCSX ( geo ) = = false )
return false ;
if ( numLines [ 1 ] % 2 ! = 1 )
{
cerr < < " Operator_CylinderMultiGrid::SetGeometryCSX: Error, number of line in alpha direction must be odd... found: " < < numLines [ 1 ] < < endl ;
2010-09-08 14:07:28 +00:00
exit ( 0 ) ;
}
//check if mesh is homogenous in alpha-direction
double diff = discLines [ 1 ] [ 1 ] - discLines [ 1 ] [ 0 ] ;
2010-12-06 12:04:37 +00:00
for ( unsigned int n = 2 ; n < numLines [ 1 ] ; + + n )
2010-09-08 14:07:28 +00:00
{
if ( fabs ( ( discLines [ 1 ] [ n ] - discLines [ 1 ] [ n - 1 ] ) - diff ) / diff > 1e-10 )
{
cerr < < " Operator_CylinderMultiGrid::SetGeometryCSX: Error, mesh has to be homogenous in alpha direction for multi grid engine, violation found at: " < < n < < endl ;
exit ( 0 ) ;
}
2010-09-08 05:36:32 +00:00
}
m_Split_Pos = 0 ;
2010-12-06 12:04:37 +00:00
for ( unsigned int n = 0 ; n < numLines [ 0 ] ; + + n )
2010-09-08 05:36:32 +00:00
{
if ( m_Split_Rad < discLines [ 0 ] [ n ] )
{
m_Split_Pos = n ;
cout < < " Operator_CylinderMultiGrid::SetGeometryCSX: Found mesh split position @ " < < m_Split_Pos < < endl ;
m_Split_Rad = discLines [ 0 ] [ n ] ;
break ;
}
}
if ( ( m_Split_Pos < 4 ) | | ( m_Split_Pos > numLines [ 0 ] - 4 ) )
{
cerr < < " Operator_CylinderMultiGrid::SetGeometryCSX: Error, split invalid... " < < endl ;
return false ;
}
CSRectGrid * grid = geo - > GetGrid ( ) ;
grid - > ClearLines ( 0 ) ;
grid - > ClearLines ( 1 ) ;
2010-12-06 12:04:37 +00:00
for ( unsigned int n = 0 ; n < m_Split_Pos ; + + n )
2010-09-08 05:36:32 +00:00
grid - > AddDiscLine ( 0 , discLines [ 0 ] [ n ] ) ;
for ( unsigned int n = 0 ; n < numLines [ 1 ] ; n + = 2 )
grid - > AddDiscLine ( 1 , discLines [ 1 ] [ n ] ) ;
if ( m_InnerOp - > SetGeometryCSX ( CSX ) = = false )
return false ;
//restore grid to original mesh
grid - > ClearLines ( 0 ) ;
grid - > ClearLines ( 1 ) ;
for ( unsigned int n = 0 ; n < numLines [ 0 ] ; + + n )
grid - > AddDiscLine ( 0 , discLines [ 0 ] [ n ] ) ;
for ( unsigned int n = 0 ; n < numLines [ 1 ] ; + + n )
grid - > AddDiscLine ( 1 , discLines [ 1 ] [ n ] ) ;
return true ;
}
void Operator_CylinderMultiGrid : : Init ( )
{
Operator_Cylinder : : Init ( ) ;
2010-09-08 14:07:28 +00:00
if ( m_Split_Radii . empty ( ) )
m_InnerOp = Operator_Cylinder : : New ( m_numThreads ) ;
else
m_InnerOp = Operator_CylinderMultiGrid : : New ( m_Split_Radii , m_numThreads ) ;
2010-09-08 05:36:32 +00:00
}
void Operator_CylinderMultiGrid : : CalcStartStopLines ( unsigned int & numThreads , vector < unsigned int > & start , vector < unsigned int > & stop ) const
{
2010-10-05 15:24:36 +00:00
vector < unsigned int > jpt = AssignJobs2Threads ( numLines [ 0 ] - m_Split_Pos + 1 , numThreads , true ) ;
2010-09-08 05:36:32 +00:00
2010-10-05 15:24:36 +00:00
numThreads = jpt . size ( ) ;
2010-09-08 05:36:32 +00:00
start . resize ( numThreads ) ;
stop . resize ( numThreads ) ;
2010-10-05 15:24:36 +00:00
start . at ( 0 ) = m_Split_Pos - 1 ;
stop . at ( 0 ) = jpt . at ( 0 ) - 1 + m_Split_Pos - 1 ;
for ( unsigned int n = 1 ; n < numThreads ; n + + )
2010-09-08 05:36:32 +00:00
{
2010-10-05 15:24:36 +00:00
start . at ( n ) = stop . at ( n - 1 ) + 1 ;
stop . at ( n ) = start . at ( n ) + jpt . at ( n ) - 1 ;
2010-09-08 05:36:32 +00:00
}
}
2010-10-27 09:17:58 +00:00
int Operator_CylinderMultiGrid : : CalcECOperator ( DebugFlags debugFlags )
2010-09-08 05:36:32 +00:00
{
2010-09-08 14:07:28 +00:00
int retCode = 0 ;
2010-09-08 05:36:32 +00:00
if ( dT )
m_InnerOp - > SetTimestep ( dT ) ;
//calc inner child first
2010-10-27 12:49:16 +00:00
m_InnerOp - > CalcECOperator ( ) ;
2010-09-08 05:36:32 +00:00
dT = m_InnerOp - > GetTimestep ( ) ;
2010-10-27 09:17:58 +00:00
retCode = Operator_Cylinder : : CalcECOperator ( debugFlags ) ;
2010-09-08 14:07:28 +00:00
if ( GetTimestepValid ( ) = = false )
{
cerr < < " Operator_CylinderMultiGrid::CalcECOperator(): Warning, timestep invalid... resetting... " < < endl ;
dT = opt_dT ;
m_InnerOp - > SetTimestep ( dT ) ;
2010-10-27 12:49:16 +00:00
m_InnerOp - > CalcECOperator ( ) ;
2010-10-27 09:17:58 +00:00
return Operator_Cylinder : : CalcECOperator ( debugFlags ) ;
2010-09-08 14:07:28 +00:00
}
return retCode ;
2010-09-08 05:36:32 +00:00
}
bool Operator_CylinderMultiGrid : : SetupExcitation ( TiXmlElement * Excite , unsigned int maxTS )
{
2010-09-08 14:07:28 +00:00
if ( ! m_InnerOp - > SetupExcitation ( Excite , maxTS ) )
2010-09-08 05:36:32 +00:00
return false ;
return Exc - > setupExcitation ( Excite , maxTS ) ;
}
void Operator_CylinderMultiGrid : : Reset ( )
{
Operator_Cylinder : : Reset ( ) ;
m_InnerOp - > Reset ( ) ;
}
void Operator_CylinderMultiGrid : : SetBoundaryCondition ( int * BCs )
{
Operator_Cylinder : : SetBoundaryCondition ( BCs ) ;
2010-09-22 07:58:45 +00:00
int oldBC = BCs [ 1 ] ;
2010-09-08 05:36:32 +00:00
BCs [ 1 ] = 0 ; //always PEC in +r-direction
m_InnerOp - > SetBoundaryCondition ( BCs ) ;
2010-09-22 07:58:45 +00:00
BCs [ 1 ] = oldBC ;
2010-09-08 05:36:32 +00:00
}
void Operator_CylinderMultiGrid : : AddExtension ( Operator_Extension * op_ext )
{
2010-09-22 14:08:39 +00:00
//check whether extension is save to use in multi-grid
if ( op_ext - > IsCylindricalMultiGridSave ( false ) = = false )
2010-09-08 05:36:32 +00:00
{
2010-09-22 14:08:39 +00:00
cerr < < " Operator_CylinderMultiGrid::AddExtension: Warning: Operator extension \" " < < op_ext - > GetExtensionName ( ) < < " \" is not compatible with cylindrical multi-grids!! skipping...! " < < endl ;
2010-09-08 05:36:32 +00:00
return ;
}
2010-09-22 07:58:45 +00:00
2010-09-22 14:08:39 +00:00
Operator_Cylinder : : AddExtension ( op_ext ) ;
// cylinder extension does not need to be cloned, it will be created by each operator of its own...
if ( dynamic_cast < Operator_Ext_Cylinder * > ( op_ext ) )
return ;
//check whether extension is save to use in child multi-grid
2010-09-22 07:58:45 +00:00
if ( op_ext - > IsCylindricalMultiGridSave ( true ) )
2010-09-08 05:36:32 +00:00
{
2010-09-22 07:58:45 +00:00
Operator_Extension * child_Ext = op_ext - > Clone ( m_InnerOp ) ;
if ( child_Ext = = NULL )
{
cerr < < " Operator_CylinderMultiGrid::AddExtension: Warning, extension: " < < op_ext - > GetExtensionName ( ) < < " can not be cloned for the child operator. Skipping Extension... " < < endl ;
return ;
}
//give the copy to child
m_InnerOp - > AddExtension ( child_Ext ) ;
2010-09-08 05:36:32 +00:00
}
}
void Operator_CylinderMultiGrid : : ShowStat ( ) const
{
m_InnerOp - > ShowStat ( ) ;
m_InnerOp - > ShowExtStat ( ) ;
Operator_Cylinder : : ShowStat ( ) ;
}