Keurfon Luu
Keurfon Luu
I've got that issue as well. In the meantime, here is an ugly workaround: ```python import pathlib, shutil filename = pathlib.Path(filename) if str(filename.parent) != ".": shutil.move(f"{filename.stem}.h5", str(filename.parent)) ``` where `filename`...
Yeah, I also think it is time to add support for structured meshes. As far as I know, structured grids are defined by a ``shape`` tuple ``(NX, NY)`` in 2D...
> The names are cool. I'd vote for attributes `type` and `structure_shape` or `shape`. All downstream conversion functions can go into the mesh object itself. Do you want to start...
I wonder if it would not be easier to make ``points``, ``cells``, ``point_sets`` and ``cell_sets`` as properties of ``meshio.Mesh``? Something like: ```python @property def points(self): if self._points: return self._points else:...
Don't know what else to do to improve the performances after PR #588. By the way, aren't the I/O speed figures affected by ``tracemalloc``?
Not sure whether it can be done with ``meshio``. You could give ``pyvista`` a try but it requires the library ``vtk`` to be installed. If you have two arrays ``points``...
> I've also been coming up against this problem. I've previously used PyVista for this, but my understanding now is that PyVista uses meshio to perform VTK file IO? As...
Indeed, these two algorithms calculate the secular function differently. For some models, Dunkin's matrix algorithm works but Fast Delta doesn't, for others, it's the opposite. However, I would recommend using...
I have the same issue with an Aukey USB-C hub using the original 65W charger (charging and not charging in Windows). I did not have any issue with the initial...
> meshio. The biggest issue here is the recent lack of maintenance in `meshio`. Without this changing, we need to consider either fully dropping `meshio` as a dependency or firewalling...