42 namespace MultiRegions
57 const bool dealiasing):
70 const bool dealiasing,
87 for(j = 0; j < nel; ++j)
95 for(n = 1; n < (ny*nz); ++n)
98 for(j = 0; j < nel; ++j)
100 (*m_exp).push_back((*
m_exp)[j]);
121 if(DeclareLinesSetCoeffPhys)
126 for(
int n = 0; n <
m_lines.num_elements(); ++n)
139 const std::vector<unsigned int> &eIDs,
140 const bool DeclareLinesSetCoeffPhys):
145 if(DeclareLinesSetCoeffPhys)
148 std::vector<unsigned int> eIDsLine;
149 int nel = eIDs.size()/
m_lines.num_elements();
151 for (
int i = 0; i < nel; ++i)
153 eIDsLine.push_back(eIDs[i]);
162 for(
int n = 0; n <
m_lines.num_elements(); ++n)
181 int ncoeffs_per_line =
m_lines[0]->GetNcoeffs();
182 int npoints_per_line =
m_lines[0]->GetTotPoints();
184 int nyzlines =
m_lines.num_elements();
193 int nel =
m_lines[0]->GetExpSize();
199 for(cnt = n = 0; n < nyzlines; ++n)
202 m_lines[n]->SetPhysArray(tmparray =
m_phys + npoints_per_line*n);
204 for(i = 0; i < nel; ++i)
207 m_phys_offset[cnt] =
m_lines[n]->GetPhys_Offset(i) + n*npoints_per_line;
208 m_offset_elmt_id[cnt++] =
m_lines[n]->GetOffset_Elmt_Id(i) + n*nel;
239 (*m_exp)[eid]->GetCoords(x);
242 for(m = 0; m < nzlines; ++m)
244 for(j = 0; j < nylines; ++j)
246 for(n = 0; n < npoints; ++n)
248 Vmath::Fill(1,x[n],tmp_xc = xc0 + n +(j*npoints) + (m*npoints*nylines), 1);
249 Vmath::Fill(1,y[j],tmp_xc = xc1 + n +(j*npoints) + (m*npoints*nylines), 1);
250 Vmath::Fill(1,z[m],tmp_xc = xc2 + n +(j*npoints) + (m*npoints*nylines), 1);
278 int npoints =
m_lines[0]->GetTotPoints();
299 for(m = 0; m < nzlines; ++m)
301 for(j = 0; j < nylines; ++j)
303 for(n = 0; n < npoints; ++n)
305 Vmath::Fill(1,x[n],tmp_xc = xc0 + n +(j*npoints) + (m*npoints*nylines), 1);
306 Vmath::Fill(1,y[j],tmp_xc = xc1 + n +(j*npoints) + (m*npoints*nylines), 1);
307 Vmath::Fill(1,z[m],tmp_xc = xc2 + n +(j*npoints) + (m*npoints*nylines), 1);
323 int nquad0 = (*m_exp)[expansion]->GetNumPoints(0);
330 coords[1] = coords[0] + nquad0*nquad1*nquad2;
331 coords[2] = coords[1] + nquad0*nquad1*nquad2;
333 GetCoords(expansion,coords[0],coords[1],coords[2]);
335 outfile <<
"Zone, I=" << nquad0 <<
", J=" << nquad1 <<
",K="
336 << nquad2 <<
", F=Block" << std::endl;
338 for(j = 0; j < 3; ++j)
340 for(i = 0; i < nquad0*nquad1*nquad2; ++i)
342 outfile << coords[j][i] <<
" ";
344 outfile << std::endl;
352 int nquad0 = (*m_exp)[expansion]->GetNumPoints(0);
355 int ntot = nquad0*nquad1*nquad2;
356 int ntotminus = (nquad0-1)*(nquad1-1)*(nquad2-1);
362 GetCoords(expansion,coords[0],coords[1],coords[2]);
364 outfile <<
" <Piece NumberOfPoints=\""
365 << ntot <<
"\" NumberOfCells=\""
366 << ntotminus <<
"\">" << endl;
367 outfile <<
" <Points>" << endl;
368 outfile <<
" <DataArray type=\"Float32\" "
369 <<
"NumberOfComponents=\"3\" format=\"ascii\">" << endl;
371 for (i = 0; i < ntot; ++i)
373 for (j = 0; j < 3; ++j)
375 outfile << coords[j][i] <<
" ";
380 outfile <<
" </DataArray>" << endl;
381 outfile <<
" </Points>" << endl;
382 outfile <<
" <Cells>" << endl;
383 outfile <<
" <DataArray type=\"Int32\" "
384 <<
"Name=\"connectivity\" format=\"ascii\">" << endl;
385 for (i = 0; i < nquad0-1; ++i)
387 for (j = 0; j < nquad1-1; ++j)
389 for (k = 0; k < nquad2-1; ++k)
391 outfile << k*nquad0*nquad1 + j*nquad0 + i <<
" "
392 << k*nquad0*nquad1 + j*nquad0 + i + 1 <<
" "
393 << k*nquad0*nquad1 + (j+1)*nquad0 + i + 1 <<
" "
394 << k*nquad0*nquad1 + (j+1)*nquad0 + i <<
" "
395 << (k+1)*nquad0*nquad1 + j*nquad0 + i <<
" "
396 << (k+1)*nquad0*nquad1 + j*nquad0 + i + 1 <<
" "
397 << (k+1)*nquad0*nquad1 + (j+1)*nquad0 + i + 1 <<
" "
398 << (k+1)*nquad0*nquad1 + (j+1)*nquad0 + i <<
" " << endl;
403 outfile <<
" </DataArray>" << endl;
404 outfile <<
" <DataArray type=\"Int32\" "
405 <<
"Name=\"offsets\" format=\"ascii\">" << endl;
406 for (i = 0; i < ntotminus; ++i)
408 outfile << i*8+8 <<
" ";
411 outfile <<
" </DataArray>" << endl;
412 outfile <<
" <DataArray type=\"UInt8\" "
413 <<
"Name=\"types\" format=\"ascii\">" << endl;
414 for (i = 0; i < ntotminus; ++i)
419 outfile <<
" </DataArray>" << endl;
420 outfile <<
" </Cells>" << endl;
421 outfile <<
" <PointData>" << endl;
437 for(
int m = 0; m < nzlines; ++m)
439 for(
int n = 0; n < nylines; ++n)
441 errL2 =
m_lines[n+(m*nylines)]->
L2(inarray + cnt, soln + cnt);
Abstraction of a two-dimensional multi-elemental expansion which is merely a collection of local expa...
virtual void v_WriteTecplotZone(std::ostream &outfile, int expansion)
static boost::shared_ptr< DataType > AllocateSharedPtr()
Allocate a shared pointer from the memory pool.
NekOptimize::GlobalOptParamSharedPtr m_globalOptParam
void Fill(int n, const T alpha, T *x, const int incx)
Fill a vector with a constant value.
const boost::shared_ptr< LocalRegions::ExpansionVector > GetExp() const
This function returns the vector of elements in the expansion.
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.
int GetExpSize(void)
This function returns the number of elements in the expansion.
boost::shared_ptr< SessionReader > SessionReaderSharedPtr
Array< OneD, ExpListSharedPtr > m_lines
Vector of ExpList, will be filled with ExpList1D.
virtual void v_WriteVtkPieceHeader(std::ostream &outfile, int expansion, int istrip)
Array< OneD, int > m_coeff_offset
Offset of elemental data into the array m_coeffs.
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.
boost::shared_ptr< LocalRegions::ExpansionVector > m_exp
The list of local expansions.
int GetTotPoints(void) const
Returns the total number of quadrature points m_npoints .
boost::shared_ptr< ExpList1D > ExpList1DSharedPtr
Shared pointer to an ExpList1D object.
virtual NekDouble v_L2(const Array< OneD, const NekDouble > &inarray, const Array< OneD, const NekDouble > &soln=NullNekDouble1DArray)
void SetCoeffPhys(void)
Definition of the total number of degrees of freedom and quadrature points. Sets up the storage for m...
Array< OneD, int > m_phys_offset
Offset of elemental data into the array m_phys.
virtual void v_GetCoords(Array< OneD, NekDouble > &coord_0, Array< OneD, NekDouble > &coord_1, Array< OneD, NekDouble > &coord_2)
ExpList3DHomogeneous2D()
Default constructor.
int m_ncoeffs
The total number of local degrees of freedom. m_ncoeffs .
Array< OneD, int > m_offset_elmt_id
Array containing the element id m_offset_elmt_id[n] that the n^th consecutive block of data in m_coef...
NekDouble m_lhom_y
Width of homogeneous direction y.
virtual ~ExpList3DHomogeneous2D()
Destructor.
LibUtilities::SessionReaderSharedPtr m_session
Session.
void Sadd(int n, const T alpha, const T *x, const int incx, T *y, const int incy)
Add vector y = alpha + x.
LibUtilities::BasisSharedPtr m_homogeneousBasis_y
Definition of the total number of degrees of freedom and quadrature points. Sets up the storage for m...
This class is the abstraction of a one-dimensional multi-elemental expansions which is merely a colle...
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 . ...
void SetExpType(ExpansionType Type)
Returns the type of the expansion.
boost::shared_ptr< MeshGraph > MeshGraphSharedPtr
NekDouble L2(const Array< OneD, const NekDouble > &inarray, const Array< OneD, const NekDouble > &soln=NullNekDouble1DArray)
This function calculates the error with respect to soln of the global spectral/hp element approximat...
Abstraction of a one-dimensional multi-elemental expansion which is merely a collection of local expa...
Describes the specification for a Basis.