Skip to content
Discussion options

You must be logged in to vote

Hi @EvgenyUgolkov
This is a good question. When you do a snow2 extraction it includes numerous geometrical properties, like 'pore.inscribed_diameter', 'pore.region_volume', etc.

The first thing to note is that we no longer assume what the user wants to be as their official 'pore.diameter' in OpenPNM. You must assign your own, like pn['pore.diameter'] = pn['pore.inscribed_diameter'].

THEN, and this gets to your point, you need to make an assumption about what shapes to use. For instance, if you want to assume spherical pores, then you would do either of the following:

  • pn['pore.volume'] = 3.14159/4*pn['pore.diameter']**3
  • pn.add_model(propname='pore.diameter', model=op.models.geometry.pore_…

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@EvgenyUgolkov
Comment options

@fsamaraie
Comment options

@jgostick
Comment options

@fsamaraie
Comment options

Answer selected by EvgenyUgolkov
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants