Replies: 1 comment 1 reply
-
It is not possible to guarantee this in the extraction, but you can adjust the sizes of your throats during a post-processing step once it's imported into OpenPNM. Basically just add the "from_neighbor_pores" pore scale model, with 'pore.diameter' as the The function would be something like: pn.add_model(
propname='throat.diameter_max',
model=op.models.geometry.throat_size.from_neighbor_pores,
mode='min',
) |
Beta Was this translation helpful? Give feedback.
-
Hi professor,
I am implementing a non-linear transport model in OpenPNM (where the hydraulic conductance is dependent on flow rate), which works, but I need to make sure that my pore radius is larger than my throat radius in order to avoid nan values. My question is:
Is it possible to extract a pore network using the SNOW algorithm, where for every conduit the pore.inscribed_diameter > throat.inscribed_diameter? If yes, how? Or do I need to use the MaxBall algorithm for that?
Kind regards,
Menno Koning
Beta Was this translation helpful? Give feedback.
All reactions