From eb7475778983d5218238b5e53ace319ca99f7f84 Mon Sep 17 00:00:00 2001 From: Thorsten Liebig Date: Tue, 16 Aug 2011 17:03:57 +0200 Subject: [PATCH] openEMS using CSX mesh type definition --- Common/operator_base.cpp | 2 +- Common/operator_base.h | 2 +- FDTD/operator_cylinder.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Common/operator_base.cpp b/Common/operator_base.cpp index 11c4eaf..3271008 100644 --- a/Common/operator_base.cpp +++ b/Common/operator_base.cpp @@ -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; diff --git a/Common/operator_base.h b/Common/operator_base.h index e01b696..ebd8379 100644 --- a/Common/operator_base.h +++ b/Common/operator_base.h @@ -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; diff --git a/FDTD/operator_cylinder.cpp b/FDTD/operator_cylinder.cpp index 97accd6..81638d9 100644 --- a/FDTD/operator_cylinder.cpp +++ b/FDTD/operator_cylinder.cpp @@ -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()