72 const std::string& rBaseName,
73 const bool clearOutputDir)
76 mNodesPerElement(ELEMENT_DIM+1),
77 mNodesPerBoundaryElement(ELEMENT_DIM),
79 mpDistributedMesh(nullptr),
82 mNodeCounterForParallelMesh(0),
83 mElementCounterForParallelMesh(0),
84 mBoundaryElementCounterForParallelMesh(0),
85 mCableElementCounterForParallelMesh(0),
86 mFilesAreBinary(false)
90 mpIters->pBoundaryElemIter =
nullptr;
124 std::vector<double> coords(SPACE_DIM);
127 if ((*(mpIters->pNodeIter)) != mpMesh->GetNodeIteratorEnd())
131 for (
unsigned j=0; j<SPACE_DIM; j++)
133 coords[j] = (*(mpIters->pNodeIter))->GetPoint()[j];
136 mNodeCounterForParallelMesh=(*(mpIters->pNodeIter))->GetIndex() + 1;
138 ++(*(mpIters->pNodeIter));
145 assert( mpDistributedMesh !=
nullptr );
148 status.MPI_ERROR = MPI_SUCCESS;
150 boost::scoped_array<double> raw_coords(
new double[SPACE_DIM]);
151 MPI_Recv(raw_coords.get(), SPACE_DIM, MPI_DOUBLE, MPI_ANY_SOURCE, mNodeCounterForParallelMesh, PETSC_COMM_WORLD, &status);
152 assert(status.MPI_ERROR == MPI_SUCCESS);
153 for (
unsigned j=0; j<coords.size(); j++)
155 coords[j] = raw_coords[j];
158 mNodeCounterForParallelMesh++;
177 if (mpDistributedMesh ==
nullptr)
180 assert(this->mNumElements == mpMesh->GetNumElements());
182 for (
unsigned j=0; j<elem_data.
NodeIndices.size(); j++)
184 unsigned old_index = (*(mpIters->pElemIter))->GetNodeGlobalIndex(j);
185 elem_data.
NodeIndices[j] = mpMesh->IsMeshChanging() ? mpNodeMap->GetNewIndex(old_index) : old_index;
188 elem_data.
AttributeValue = (*(mpIters->pElemIter))->GetAttribute();
190 ++(*(mpIters->pElemIter));
197 if (mpDistributedMesh->CalculateDesignatedOwnershipOfElement(mElementCounterForParallelMesh) ==
true)
201 assert(elem_data.
NodeIndices.size() == mNodesPerElement);
204 for (
unsigned j=0; j<mNodesPerElement; j++)
213 UnpackElement(elem_data, mElementCounterForParallelMesh, mNodesPerElement, this->mNumNodes + mElementCounterForParallelMesh);
216 mElementCounterForParallelMesh++;
235 boundary_elem_data.
NodeIndices.resize(mNodesPerBoundaryElement);
237 if (mpDistributedMesh ==
nullptr)
240 assert(this->mNumBoundaryElements==mpMesh->GetNumBoundaryElements());
242 for (
unsigned j=0; j<boundary_elem_data.
NodeIndices.size(); j++)
244 unsigned old_index = (*(*(mpIters->pBoundaryElemIter)))->GetNodeGlobalIndex(j);
245 boundary_elem_data.
NodeIndices[j] = mpMesh->IsMeshChanging() ? mpNodeMap->GetNewIndex(old_index) : old_index;
247 boundary_elem_data.
AttributeValue = (*(*(mpIters->pBoundaryElemIter)))->GetAttribute();
249 ++(*(mpIters->pBoundaryElemIter));
250 return boundary_elem_data;
255 if (mpDistributedMesh->CalculateDesignatedOwnershipOfBoundaryElement(mBoundaryElementCounterForParallelMesh) ==
true)
258 BoundaryElement<ELEMENT_DIM-1, SPACE_DIM>* p_boundary_element = mpDistributedMesh->GetBoundaryElement(mBoundaryElementCounterForParallelMesh);
259 assert(boundary_elem_data.
NodeIndices.size() == ELEMENT_DIM);
260 assert(!p_boundary_element->IsDeleted());
263 for (
unsigned j=0; j<ELEMENT_DIM; j++)
265 boundary_elem_data.
NodeIndices[j] = p_boundary_element->GetNodeGlobalIndex(j);
267 boundary_elem_data.
AttributeValue = p_boundary_element->GetAttribute();
272 UnpackElement(boundary_elem_data, mBoundaryElementCounterForParallelMesh, ELEMENT_DIM, this->mNumNodes + this->mNumElements + mBoundaryElementCounterForParallelMesh);
275 mBoundaryElementCounterForParallelMesh++;
277 return boundary_elem_data;
333 bool invertMeshPermutation)
336 unsigned max_elements_all;
344 MPI_Allreduce(&max_elements_per_process, &max_elements_all, 1, MPI_UNSIGNED, MPI_MAX, PETSC_COMM_WORLD);
347 std::string node_connect_list_file_name = this->mBaseName +
".ncl";
350 node_connect_list_file_name +=
"-tmp";
355 out_stream p_ncl_file = out_stream(
nullptr);
360 p_ncl_file = this->mpOutputFileHandler->OpenOutputFile(node_connect_list_file_name, std::ios::binary | std::ios::trunc);
364 *p_ncl_file << max_elements_all <<
"\t";
365 *p_ncl_file <<
"\tBIN\n";
370 p_ncl_file = this->mpOutputFileHandler->OpenOutputFile(node_connect_list_file_name, std::ios::binary | std::ios::app);
374 unsigned default_marker = UINT_MAX;
382 std::set<unsigned>& r_elem_set = iter->rGetContainingElementIndices();
383 std::vector<unsigned> elem_vector(r_elem_set.begin(), r_elem_set.end());
384 std::sort(elem_vector.begin(), elem_vector.end());
386 for (
unsigned elem_index=elem_vector.size(); elem_index<max_elements_all; elem_index++)
388 elem_vector.push_back(default_marker);
390 assert(elem_vector.size() == max_elements_all);
392 if (max_elements_all > 0u)
394 p_ncl_file->write((
char*)&elem_vector[0], elem_vector.size()*
sizeof(
unsigned));
410 const std::string real_node_connect_list_file_name = this->mBaseName +
".ncl";
411 out_stream p_ncl_file = this->mpOutputFileHandler->OpenOutputFile(real_node_connect_list_file_name, std::ios::binary | std::ios::trunc);
412 FileFinder temp_ncl_path = this->mpOutputFileHandler->FindFile(node_connect_list_file_name);
413 std::ifstream temp_ncl_file(temp_ncl_path.
GetAbsolutePath().c_str(), std::ios::binary);
415 std::string header_line;
416 getline(temp_ncl_file, header_line,
'\n');
417 (*p_ncl_file) << header_line <<
"\n";
418 const std::streampos data_start = temp_ncl_file.tellg();
419 const std::streamoff item_width = max_elements_all *
sizeof(
unsigned);
421 std::vector<unsigned> elem_vector(max_elements_all);
422 for (
unsigned node_index=0; node_index<rMesh.
GetNumAllNodes(); node_index++)
425 temp_ncl_file.seekg(data_start + item_width * permuted_index, std::ios_base::beg);
426 temp_ncl_file.read((
char*)&elem_vector[0], max_elements_all*
sizeof(
unsigned));
427 p_ncl_file->write((
char*)&elem_vector[0], max_elements_all*
sizeof(
unsigned));
443 bool keepOriginalElementIndexing)
445 this->mpMeshReader =
nullptr;
449 this->mNumElements = mpMesh->GetNumElements();
450 this->mNumBoundaryElements = mpMesh->GetNumBoundaryElements();
451 this->mNumCableElements = mpMesh->GetNumCableElements();
454 mpIters->pNodeIter =
new NodeIterType(mpMesh->GetNodeIteratorBegin());
457 mpIters->pElemIter =
new ElemIterType(mpMesh->GetElementIteratorBegin());
460 mpIters->pBoundaryElemIter =
new BoundaryElemIterType(mpMesh->GetBoundaryElementIteratorBegin());
463 if ((*(mpIters->pElemIter)) != mpMesh->GetElementIteratorEnd())
465 mNodesPerElement = (*(mpIters->pElemIter))->GetNumNodes();
469 if ((*(mpIters->pBoundaryElemIter)) != mpMesh->GetBoundaryElementIteratorEnd())
471 mNodesPerBoundaryElement = (*(*(mpIters->pBoundaryElemIter)))->GetNumNodes();
475 if (this->mFilesAreBinary && keepOriginalElementIndexing)
477 WriteNclFile(*mpMesh);
488 if (mpDistributedMesh !=
nullptr)
491 WriteFilesUsingParallelMesh(keepOriginalElementIndexing);
502 unsigned node_map_index = 0;
503 if (mpMesh->IsMeshChanging())
505 mpNodeMap =
new NodeMap(1 + mpMesh->GetMaximumNodeIndex());
506 for (NodeIterType it = mpMesh->GetNodeIteratorBegin(); it != mpMesh->GetNodeIteratorEnd(); ++it)
508 mpNodeMap->SetNewIndex(it->GetIndex(), node_map_index++);
514 delete mpIters->pNodeIter;
515 mpIters->pNodeIter =
nullptr;
516 delete mpIters->pElemIter;
517 mpIters->pElemIter =
nullptr;
518 delete mpIters->pBoundaryElemIter;
519 mpIters->pBoundaryElemIter =
nullptr;
534 if (keepOriginalElementIndexing)
545 boost::scoped_array<double> raw_coords(
new double[SPACE_DIM]);
548 for (NodeIterType it = mpMesh->GetNodeIteratorBegin(); it != mpMesh->GetNodeIteratorEnd(); ++it)
550 for (
unsigned j=0; j<SPACE_DIM; j++)
552 raw_coords[j] = it->GetPoint()[j];
554 MPI_Ssend(raw_coords.get(), SPACE_DIM, MPI_DOUBLE, 0, it->GetIndex(), PETSC_COMM_WORLD);
561 boost::scoped_array<unsigned> raw_indices(
new unsigned[mNodesPerElement]);
563 for (ElementIterType it = mpMesh->GetElementIteratorBegin(); it != mpMesh->GetElementIteratorEnd(); ++it)
565 unsigned index = it->GetIndex();
566 if (mpDistributedMesh->CalculateDesignatedOwnershipOfElement(index) ==
true)
568 for (
unsigned j=0; j<mNodesPerElement; j++)
570 raw_indices[j] = it->GetNodeGlobalIndex(j);
572 PostElement(index, raw_indices.get(), mNodesPerElement, this->mNumNodes + index, it->GetAttribute());
579 if (ELEMENT_DIM != 1)
581 boost::scoped_array<unsigned> raw_face_indices(
new unsigned[ELEMENT_DIM]);
583 for (BoundaryElementIterType it = mpMesh->GetBoundaryElementIteratorBegin(); it != mpMesh->GetBoundaryElementIteratorEnd(); ++it)
585 unsigned index = (*it)->GetIndex();
586 if (mpDistributedMesh->CalculateDesignatedOwnershipOfBoundaryElement(index) ==
true)
588 for (
unsigned j=0; j<ELEMENT_DIM; j++)
590 raw_face_indices[j] = (*it)->GetNodeGlobalIndex(j);
592 PostElement(index, raw_face_indices.get(), ELEMENT_DIM, this->mNumNodes + this->mNumElements + index, (*it)->GetAttribute());
603 for (CableElementIterType it = mpMixedMesh->GetCableElementIteratorBegin(); it != mpMixedMesh->GetCableElementIteratorEnd(); ++it)
605 unsigned index =(*it)->GetIndex();
606 if (mpMixedMesh->CalculateDesignatedOwnershipOfCableElement(index) ==
true)
608 unsigned raw_cable_element_indices[2];
609 for (
unsigned j=0; j<2; j++)
611 raw_cable_element_indices[j] = (*it)->GetNodeGlobalIndex(j);
613 PostElement(index, raw_cable_element_indices, 2, this->mNumNodes + this->mNumElements + this->mNumBoundaryElements + index, (*it)->GetAttribute());
628 CreateFilesWithHeaders();
631 AppendLocalDataToFiles();