How to set the pore/throat size in Delaunay networks? #2218
-
Hi, everyone |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can't set the PSD/TSD with these networks. The sizes are dictated by the local density of the initial points. So if several points are close together then they will have small sizes, while pores that are isolated in space have room to accomodate a large pore. You can in principle override the pores sizes by hand ( |
Beta Was this translation helpful? Give feedback.
You can't set the PSD/TSD with these networks. The sizes are dictated by the local density of the initial points. So if several points are close together then they will have small sizes, while pores that are isolated in space have room to accomodate a large pore. You can in principle override the pores sizes by hand (
net['pore.diameter'] = <some sizes>
, but this runs the risk of having pores that overlap, which creates unphysical values for things like throat length and pore volumes (counting some volume twice). You could potentially control the pore sizes indirectly by controlling how you place the initial points passed to the tessellation, but this is not a function we have in OpenPNM a…