36 #include <boost/core/ignore_unused.hpp> 44 namespace MultiRegions
47 ExpList1DHomogeneous2D::ExpList1DHomogeneous2D():
59 const bool dealiasing,
66 "Size of basis number of points and number of lines are " 69 for(n = 0; n < points.num_elements(); ++n)
72 (*m_exp).push_back(points[n]->
GetExp(0));
89 for(
int n = 0; n <
m_lines.num_elements(); ++n)
107 int ncoeffs_per_line =
m_lines[0]->GetNcoeffs();
108 int npoints_per_line =
m_lines[0]->GetTotPoints();
110 int nyzlines =
m_lines.num_elements();
119 int nel =
m_lines[0]->GetExpSize();
124 for(cnt = n = 0; n < nyzlines; ++n)
127 m_lines[n]->SetPhysArray(tmparray = m_phys + npoints_per_line*n);
129 for(i = 0; i < nel; ++i)
132 m_phys_offset[cnt++] =
m_lines[n]->GetPhys_Offset(i) + n*npoints_per_line;
142 boost::ignore_unused(eid);
167 for(m = 0; m < nzlines; ++m)
169 for(j = 0; j < nylines; ++j)
171 for(n = 0; n < npoints; ++n)
173 Vmath::Fill(1,x[n],tmp_xc = xc0 + n +(j*npoints) + (m*npoints*nylines), 1);
174 Vmath::Fill(1,y[j],tmp_xc = xc1 + n +(j*npoints) + (m*npoints*nylines), 1);
175 Vmath::Fill(1,z[m],tmp_xc = xc2 + n +(j*npoints) + (m*npoints*nylines), 1);
226 for(m = 0; m < nzlines; ++m)
228 for(j = 0; j < nylines; ++j)
230 for(n = 0; n < npoints; ++n)
232 Vmath::Fill(1,x[n],tmp_xc = xc0 + n +(j*npoints) + (m*npoints*nylines), 1);
233 Vmath::Fill(1,y[j],tmp_xc = xc1 + n +(j*npoints) + (m*npoints*nylines), 1);
234 Vmath::Fill(1,z[m],tmp_xc = xc2 + n +(j*npoints) + (m*npoints*nylines), 1);
270 coords[1] = coords[0] + nquad0*nquad1*nquad2;
271 coords[2] = coords[1] + nquad0*nquad1*nquad2;
273 GetCoords(expansion,coords[0],coords[1],coords[2]);
275 outfile <<
"Zone, I=" << nquad1 <<
", J=" << nquad0*nquad2
276 <<
", F=Block" << std::endl;
278 for(j = 0; j < nquad1; ++j)
282 outfile << coords[j][i] <<
" ";
284 outfile << std::endl;
291 boost::ignore_unused(istrip);
299 int ntot = nquad0*nquad1*nquad2;
300 int ntotminus = (nquad0)*(nquad1-1)*(nquad2-1);
306 GetCoords(expansion,coords[0],coords[1],coords[2]);
308 outfile <<
" <Piece NumberOfPoints=\"" 309 << ntot <<
"\" NumberOfCells=\"" 310 << ntotminus <<
"\">" << endl;
311 outfile <<
" <Points>" << endl;
312 outfile <<
" <DataArray type=\"Float32\" " 313 <<
"NumberOfComponents=\"3\" format=\"ascii\">" << endl;
315 for (i = 0; i < ntot; ++i)
317 for (j = 0; j < 3; ++j)
319 outfile << coords[j][i] <<
" ";
324 outfile <<
" </DataArray>" << endl;
325 outfile <<
" </Points>" << endl;
326 outfile <<
" <Cells>" << endl;
327 outfile <<
" <DataArray type=\"Int32\" " 328 <<
"Name=\"connectivity\" format=\"ascii\">" << endl;
329 for (i = 0; i < nquad0; ++i)
331 for (j = 0; j < nquad1-1; ++j)
333 outfile << j*nquad0 + i <<
" " 334 << j*nquad0 + i + 1 <<
" " 335 << (j+1)*nquad0 + i + 1 <<
" " 336 << (j+1)*nquad0 + i << endl;
340 outfile <<
" </DataArray>" << endl;
341 outfile <<
" <DataArray type=\"Int32\" " 342 <<
"Name=\"offsets\" format=\"ascii\">" << endl;
343 for (i = 0; i < ntotminus; ++i)
345 outfile << i*4+4 <<
" ";
348 outfile <<
" </DataArray>" << endl;
349 outfile <<
" <DataArray type=\"UInt8\" " 350 <<
"Name=\"types\" format=\"ascii\">" << endl;
351 for (i = 0; i < ntotminus; ++i)
356 outfile <<
" </DataArray>" << endl;
357 outfile <<
" </Cells>" << endl;
358 outfile <<
" <PointData>" << endl;
Abstraction of a two-dimensional multi-elemental expansion which is merely a collection of local expa...
NekOptimize::GlobalOptParamSharedPtr m_globalOptParam
virtual ~ExpList1DHomogeneous2D()
Destructor.
void Fill(int n, const T alpha, T *x, const int incx)
Fill a vector with a constant value.
ExpList1DHomogeneous2D()
Default constructor.
void SetCoeffPhys(void)
Definition of the total number of degrees of freedom and quadrature points. Sets up the storage for m...
void GetCoords(Array< OneD, NekDouble > &coord_0, Array< OneD, NekDouble > &coord_1=NullNekDouble1DArray, Array< OneD, NekDouble > &coord_2=NullNekDouble1DArray)
This function calculates the coordinates of all the elemental quadrature points . ...
Array< OneD, NekDouble > m_phys
The global expansion evaluated at the quadrature points.
NekDouble m_lhom_z
Width of homogeneous direction z.
Array< OneD, NekDouble > m_coeffs
Concatenation of all local expansion coefficients.
const std::shared_ptr< LocalRegions::ExpansionVector > GetExp() const
This function returns the vector of elements in the expansion.
Array< OneD, ExpListSharedPtr > m_lines
Vector of ExpList, will be filled with ExpList1D.
Array< OneD, int > m_coeff_offset
Offset of elemental data into the array m_coeffs.
Abstraction of a one-dimensional multi-elemental expansion which is merely a collection of local expa...
LibUtilities::BasisSharedPtr m_homogeneousBasis_z
Base expansion in z direction.
void Smul(int n, const T alpha, const T *x, const int incx, T *y, const int incy)
Scalar multiply y = alpha*y.
virtual void v_WriteVtkPieceHeader(std::ostream &outfile, int expansion, int istrip)
Array< OneD, int > m_phys_offset
Offset of elemental data into the array m_phys.
int m_ncoeffs
The total number of local degrees of freedom. m_ncoeffs .
NekDouble m_lhom_y
Width of homogeneous direction y.
static std::shared_ptr< DataType > AllocateSharedPtr(const Args &...args)
Allocate a shared pointer from the memory pool.
virtual void v_GetCoords(Array< OneD, NekDouble > &coord_0, Array< OneD, NekDouble > &coord_1, Array< OneD, NekDouble > &coord_2)
void Sadd(int n, const T alpha, const T *x, const int incx, T *y, const int incy)
Add vector y = alpha + x.
int m_ny
Number of modes = number of poitns in y direction.
LibUtilities::BasisSharedPtr m_homogeneousBasis_y
Definition of the total number of degrees of freedom and quadrature points. Sets up the storage for m...
int m_nz
Number of modes = number of poitns in z direction.
virtual void v_WriteTecplotZone(std::ostream &outfile, int expansion)
int GetCoordim(int eid)
This function returns the dimension of the coordinates of the element eid.
#define ASSERTL1(condition, msg)
Assert Level 1 – Debugging which is used whether in FULLDEBUG or DEBUG compilation mode...
Describes the specification for a Basis.
std::shared_ptr< SessionReader > SessionReaderSharedPtr