openEMS using CSX mesh type definition

This commit is contained in:
Thorsten Liebig 2011-08-16 17:03:57 +02:00
parent 326e0aaa31
commit eb74757789
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@
Operator_Base::Operator_Base()
{
Init();
m_MeshType = Processing::CARTESIAN_MESH;
m_MeshType = CARTESIAN;
m_StoreMaterial[0]=false;
m_StoreMaterial[1]=false;
m_StoreMaterial[2]=false;

View File

@ -115,7 +115,7 @@ protected:
//! bool flag array to store material data for post-processing
bool m_StoreMaterial[4];
Processing::MeshType m_MeshType;
CoordinateSystem m_MeshType;
unsigned int numLines[3];
double* discLines[3];
double gridDelta;

View File

@ -32,7 +32,7 @@ Operator_Cylinder* Operator_Cylinder::New(unsigned int numThreads)
Operator_Cylinder::Operator_Cylinder() : Operator_Multithread()
{
m_MeshType = ProcessFields::CYLINDRICAL_MESH;
m_MeshType = CYLINDRICAL;
}
Operator_Cylinder::~Operator_Cylinder()