throat saturation (Ordinary Percolation ) #1959
-
Dear all, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
From the perspective of percolation, a pore/throat can either be invaded or not, so is a Boolean value (0 or 1), for which we use the word occupancy. The appearance of 'fractional' filling comes from applying additional physics on top of percolation. For instance, it's possible to apply a 'late pore filling' model which make the 'saturation' of the pore < 1. Upon initial invasion the pore may be filled to 0.5, while as the pressure is increased the corners and crevices begin to fill, so s -> 1. These sort of models basically allow the inclusion of unresolved features and physics. Regarding evaporation, we do not have a lot of support/features for this application. It's a very complicated process and we don't focus on this within our own research group. However, you can implement this using OpenPNM by using the pore-scale models. This means that you define a function that takes various other properties as input, then computes the saturation, and returns it. This saturation value can then be used by an algorithm that model diffusion of water vapor or whatever you're focusing on. The algorithm(s) will probably be the most complicated part, since heat and mass and invasion percolation are coupled. We did one paper on this several years ago but it was messy and time consuming, so the code never made it into openpnm. I'm sorry that this is not a straight forward answer, but it's the best I can offer. |
Beta Was this translation helpful? Give feedback.
From the perspective of percolation, a pore/throat can either be invaded or not, so is a Boolean value (0 or 1), for which we use the word occupancy. The appearance of 'fractional' filling comes from applying additional physics on top of percolation. For instance, it's possible to apply a 'late pore filling' model which make the 'saturation' of the pore < 1. Upon initial invasion the pore may be filled to 0.5, while as the pressure is increased the corners and crevices begin to fill, so s -> 1. These sort of models basically allow the inclusion of unresolved features and physics.
Regarding evaporation, we do not have a lot of support/features for this application. It's a very complicated …