openEMS/Common/operator_base.cpp

136 lines
2.7 KiB
C++
Raw Normal View History

/*
* 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();
2011-08-16 15:03:57 +00:00
m_MeshType = CARTESIAN;
m_StoreMaterial[0]=false;
m_StoreMaterial[1]=false;
m_StoreMaterial[2]=false;
m_StoreMaterial[3]=false;
}
Operator_Base::~Operator_Base()
{
Delete();
}
bool Operator_Base::SetGeometryCSX(ContinuousStructure* geo)
{
if (geo==NULL) return false;
CSX = geo;
return true;
}
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()
{
CSX = NULL;
dT = 0;
for (int n=0; n<3; ++n)
discLines[n]=NULL;
for (int n=0; n<6; ++n)
m_BC[n]=0;
SetBackgroundMaterial(1,1,0,0);
}
void Operator_Base::Delete()
{
for (int n=0; n<3; ++n)
{
delete[] discLines[n];
discLines[n]=0;
}
for (int n=0; n<6; ++n)
m_BC[n]=0;
dT = 0;
}
void Operator_Base::Reset()
{
Delete();
}
void Operator_Base::SetMaterialStoreFlags(int type, bool val)
{
if ((type<0) || (type>4))
return;
m_StoreMaterial[type]=val;
}
void Operator_Base::SetBackgroundMaterial(double epsR, double mueR, double kappa, double sigma)
{
SetBackgroundEpsR(epsR);
SetBackgroundMueR(mueR);
SetBackgroundKappa(kappa);
SetBackgroundSigma(sigma);
}
void Operator_Base::SetBackgroundEpsR(double val)
{
if (val<1)
{
cerr << __func__ << ": Warning, a relative electric permittivity <1 it not supported, skipping" << endl;
return;
}
m_BG_epsR=val;
}
void Operator_Base::SetBackgroundMueR(double val)
{
if (val<1)
{
cerr << __func__ << ": Warning, a relative magnetic permeability <1 it not supported, skipping" << endl;
return;
}
m_BG_mueR=val;
}
void Operator_Base::SetBackgroundKappa(double val)
{
if (val<0)
{
cerr << __func__ << ": Warning, an electric conductivity <0 it not supported, skipping" << endl;
return;
}
m_BG_kappa=val;
}
void Operator_Base::SetBackgroundSigma(double val)
{
if (val<0)
{
cerr << __func__ << ": Warning, an artifival magnetic conductivity <0 it not supported, skipping" << endl;
return;
}
m_BG_sigma=val;
}