Mike McKague
Mike McKague
An exception was raised in `find_connected_nodes` triggering an error that said, "This function is not implemented for directed networks". Talking to @ma-sadeghi I learned that a directed network has at...
fixes #2537
@jgostick and I discussed a wishlist for OpenPNM examples. Is there anything else that should be on the list?
Currently, user must manually stack ICs for each of the algorithms and pass through run method. This is tedious and not user friendly. Add a helper method called set_IC() to...
The distance transform is useful in network extraction algs and therefore often needs to be computed anyway. Why not pass dt into _estimate_overlap instead of calculating it twice? I propose...
These methods would have been handy for me recently. Would we consider adding these back? I ran into a situation where my algorithm was not running do to nans in...
I was using `spheres_and_cylinders` model and got negative conduit lengths. There was no error thrown until it was noticed that I had nans in my conductance. I had to trace...
Currently there is only one scipy integrator classes that uses RK45. I created a general integrator class that uses RK45 by default called ScipyIntegrator, this is the parent class. Then,...
Please refer to this line [here](https://github.com/PMEAL/OpenPNM/blob/d8efaa211ea6721cc4a718890f11fb60b8b43326/openpnm/core/_models.py#L539) I ran into this problem when working on my lithium ion battery model. In the electrolyte phase I have diffusive-migrative conductance that is asymmetric...