Writing to VTK by default as it is more universal.

This commit is contained in:
Patrick Shriwise 2020-03-17 15:18:34 -05:00
parent 92589048d8
commit 3c1432ae0e

View file

@ -2083,7 +2083,7 @@ UnstructuredMesh::set_score_data(const std::string& score,
void
UnstructuredMesh::write(std::string base_filename) const {
// add extension to the base name
auto filename = base_filename + ".h5m";
auto filename = base_filename + ".vtk";
write_message("Writing unstructured mesh " + filename + "...", 5);
filename = settings::path_output + filename;