39 std::shared_ptr<BaseMeshReader> reader_ptr;
41 reader_ptr = std::make_shared<GmshMeshReader>(file_name);
42 }
else if ( file_name.
extension() ==
".vtu" ) {
43 reader_ptr = std::make_shared<VtkMeshReader>(file_name);
44 }
else if ( file_name.
extension() ==
".pvd" ) {
45 reader_ptr = std::make_shared<PvdMeshReader>(file_name);
47 THROW(ExcWrongExtension() << EI_FileExtension(file_name.
extension()) << EI_MeshFile((
string)file_name) );
56 Mesh * mesh =
new Mesh( input_mesh_rec );
60 reader->read_physical_names(mesh);
61 if (input_mesh_rec.
opt_val(
"regions", region_list)) {
64 reader->read_raw_mesh(mesh);
65 }
INPUT_CATCH(FilePath::ExcFileOpen, FilePath::EI_Address_String, input_mesh_rec)
73 ASSERT(mesh).error(
"Argument mesh is NULL.\n");
74 tok_.set_position( Tokenizer::Position() );
88 bool boundary_domain,
unsigned int component_idx) {
90 .error(
"Vector of mapping VTK to GMSH element is not initialized. Did you call check_compatible_mesh?");
97 (*element_data_values_)[field_name] = std::make_shared< ElementDataCache<T> >();
102 unsigned int size_of_cache;
106 WarningOut().fmt(
"In file '{}', '{}' section for field '{}', time: {}.\nWrong number of entities: {}, using {} instead.\n",
111 if (n_components == 1) {
120 WarningOut().fmt(
"In file '{}', '{}' section for field '{}', time: {}.\nWrong number of components: {}, using {} instead.\n",
126 (*element_data_values_)[field_name]
127 = std::make_shared< ElementDataCache<T> >(field_name,
actual_header_.
time, size_of_cache, n_components*n_entities);
133 if (component_idx == std::numeric_limits<unsigned int>::max()) component_idx = 0;
139 double upper_bound) {
143 std::shared_ptr< ElementDataCache<double> > current_cache = dynamic_pointer_cast<
ElementDataCache<double> >(it->second);
144 ASSERT(current_cache)(field_name).error(
"scale_and_check_limits can be call only for scalable fields!\n");
146 CheckResult check_val = current_cache->check_values(default_val, lower_bound, upper_bound);
147 current_cache->scale_data(coef);
154 #define MESH_READER_GET_ELEMENT_DATA(TYPE) \ 155 template typename ElementDataCache<TYPE>::ComponentDataPtr BaseMeshReader::get_element_data<TYPE>(unsigned int n_entities, \ 156 unsigned int n_components, bool boundary_domain, unsigned int component_idx);
std::shared_ptr< std::vector< T > > ComponentDataPtr
std::shared_ptr< ElementDataFieldMap > element_data_values_
Cache with last read element data.
BaseMeshReader(const FilePath &file_name)
Constructor.
std::string data_section_name_
Store name of field data section specify for type of mesh file.
#define ASSERT(expr)
Allow use shorter versions of macro names if these names is not used with external library...
#define MESH_READER_GET_ELEMENT_DATA(TYPE)
CheckResult scale_and_check_limits(string field_name, double coef, double default_val, double lower_bound=-std::numeric_limits< double >::max(), double upper_bound=std::numeric_limits< double >::max())
virtual void read_nodes(Mesh *mesh)=0
void read_regions_from_input(Input::Array region_list)
static Mesh * mesh_factory(const Input::Record &input_mesh_rec)
void read_raw_mesh(Mesh *mesh)
virtual void read_elements(Mesh *mesh)=0
#define START_TIMER(tag)
Starts a timer with specified tag.
virtual void read_element_data(ElementDataCacheBase &data_cache, MeshDataHeader actual_header, unsigned int n_components, bool boundary_domain)=0
CheckResult
Return type of method that checked data stored in ElementDataCache (NaN values, limits) ...
Dedicated class for storing path to input and output files.
ComponentDataPtr get_component_data(unsigned int component_idx)
Return vector of element data for get component.
MeshDataHeader actual_header_
Header of actual loaded data.
#define WarningOut()
Macro defining 'warning' record of log.
bool has_compatible_mesh_
ElementDataCache< T >::ComponentDataPtr get_element_data(unsigned int n_entities, unsigned int n_components, bool boundary_domain, unsigned int component_idx)
static std::shared_ptr< BaseMeshReader > reader_factory(const FilePath &file_name)
Tokenizer tok_
Tokenizer used for reading ASCII file format.
#define THROW(whole_exception_expr)
Wrapper for throw. Saves the throwing point.
std::vector< int > const & get_element_vector(bool boundary_domain)
vector< LongIdx > boundary_elements_id_
vector< LongIdx > bulk_elements_id_