kuibit
kuibit copied to clipboard
Python 3 post-processing tools for simulations performed with the Einstein Toolkit
A small addition to `plot_grid_var.py` and `grid_var` to allow changing the colormap of 2D slices via CLI.
In several cases, we want to be able to ignore part of the data that satisfy a specific condition. For example, we want to ignore everything we density smaller than...
The full log of errors is as follows. ```python psi4 = sim.gf.xyz["qlm_psi4[0]"] psi4.get_iteration(0) ``` ``` KeyError: "Can't open attribute (can't locate attribute: 'origin')" --------------------------------------------------------------------------- KeyError Traceback (most recent call last)...
The tutorial on `SimDir` is supposed to introduce the user to the various attributes in `SimDir`. At the moment, only `timeseries` is discussed.
It strikes me that it would be extremely easy to use `kuibit` as the backend for loading data into `yt` to enable, e.g., volume rendering. In fact, volume rendering a...
In `HierarchicalGridData`, we often check if a point belongs to a grid. In practice, the check consists in: ```python if np.any(point < (self.lowest_vertex)) or np.any(point >= (self.highest_vertex)): return False return...
Keeping the `poetry.lock` file updated is important to ensure that kuibit keeps working when new software is release (e.g., `tikzplotlib` and `matplotlib`). At the moment, I update the dependencies every...
Hello Dr. Bozolla, My name is Krishiv Bhatia, and I am a high school student studying at Mountain View High School in Mountain View, CA. I have been doing my...
When trying to run the example `plot_1d_slice.py` with `matplotlib 3.8.0`, I get the following error ```Python ImportError: cannot import name 'common_texification' from 'matplotlib.backends.backend_pgf' ``` I do not get this error...
`mayavi`, the Python package that we've used so far for 3D visualization, has been an endless source of pain (from a packaging point of view). Some of the problems come...