2010-12-06 08:59:42 +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_base.h"
|
|
|
|
|
|
|
|
Operator_Base::Operator_Base()
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
m_MeshType = Processing::CARTESIAN_MESH;
|
2011-01-07 09:45:26 +00:00
|
|
|
m_StoreMaterial[0]=false;
|
|
|
|
m_StoreMaterial[1]=false;
|
|
|
|
m_StoreMaterial[2]=false;
|
|
|
|
m_StoreMaterial[3]=false;
|
2010-12-06 08:59:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Operator_Base::~Operator_Base()
|
|
|
|
{
|
2011-01-24 10:11:45 +00:00
|
|
|
Delete();
|
2010-12-06 08:59:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string Operator_Base::GetDirName(int ny) const
|
|
|
|
{
|
|
|
|
if (ny==0) return "x";
|
|
|
|
if (ny==1) return "y";
|
|
|
|
if (ny==2) return "z";
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
void Operator_Base::Init()
|
|
|
|
{
|
|
|
|
dT = 0;
|
2010-12-06 12:04:37 +00:00
|
|
|
for (int n=0; n<3; ++n)
|
2010-12-06 08:59:42 +00:00
|
|
|
discLines[n]=NULL;
|
2010-12-06 12:04:37 +00:00
|
|
|
for (int n=0; n<6; ++n)
|
2010-12-06 08:59:42 +00:00
|
|
|
m_BC[n]=0;
|
|
|
|
}
|
|
|
|
|
2011-01-24 10:11:45 +00:00
|
|
|
void Operator_Base::Delete()
|
2010-12-06 08:59:42 +00:00
|
|
|
{
|
2010-12-06 12:04:37 +00:00
|
|
|
for (int n=0; n<3; ++n)
|
2011-01-24 10:11:45 +00:00
|
|
|
{
|
2010-12-06 08:59:42 +00:00
|
|
|
delete[] discLines[n];
|
2011-01-24 10:11:45 +00:00
|
|
|
discLines[n]=0;
|
|
|
|
}
|
|
|
|
for (int n=0; n<6; ++n)
|
|
|
|
m_BC[n]=0;
|
|
|
|
dT = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Operator_Base::Reset()
|
|
|
|
{
|
|
|
|
Delete();
|
2010-12-06 08:59:42 +00:00
|
|
|
}
|
2011-01-07 09:45:26 +00:00
|
|
|
|
|
|
|
void Operator_Base::SetMaterialStoreFlags(int type, bool val)
|
|
|
|
{
|
|
|
|
if ((type<0) || (type>4))
|
|
|
|
return;
|
|
|
|
m_StoreMaterial[type]=val;
|
|
|
|
}
|