Ashwin V. Mohanan
Ashwin V. Mohanan
> Do you have any other code example, or a link to a person who has created an interesting code example. For the main calculator, the following is the class...
For some reason Tex environments (\begin... \end) do not work without surrounding $$. That needs fixing, perhaps in the mathjax plugin
@uranusjr Then we wait for the standard. @pfmoore Displaying package description is a common feature of all package managers (not just pacman, but `apt search`, `cargo search`, and so on)....
> see at least > > * name of package > > * checksum of package to be installed > > * url of documentation for package To do all...
@dev-onejun one should be able to implement it themselves using https://docs.mathjax.org/en/latest/input/tex/extensions/newcommand.html Wouldn't that be a more generic solution?
You got an error with the existing `_NekDataStore` because of this method: ```py def meshgrid_to_dim(self, mesh): """Reverse of np.meshgrid. This method extracts one-dimensional coordinates from a cubical array format for...
You can get the connectivity data at least for the EXODUS mesh like this: ```py import xarray as xr mesh = xr.open_dataset("naca(10x4).e") print(mesh.data_vars) mesh.connect1 ``` This integer data array has...
One thing I was not able to get it working was opening the EXODUS mesh file directly from Uxarray, although they claim it to be supported: https://uxarray.readthedocs.io/en/latest/user-guide/grid-formats.html#exodus
``` import uxarray as ux ux.open_grid("naca(10x4).e") ``` It assumes a 3D grid ```pytb --------------------------------------------------------------------------- KeyError Traceback (most recent call last) ~/Sources/foss/pymech/.venv/lib/python3.12/site-packages/xarray/core/dataset.py in ?(self, name) 1482 variable = self._variables[name] 1483 except...
> Yeah ! But I think extracting mesh or any mesh data from the exodus file will not provide us with the correct mesh data. The NEK5000 visualization file has...