Abstract:We predict steady-state Stokes flow of fluids within porous media at pore scales using sparse point observations and a novel class of physics-informed neural networks, called "physics-informed PointNet" (PIPN). Taking the advantages of PIPN into account, three new features become available compared to physics-informed convolutional neural networks for porous medium applications. First, the input of PIPN is exclusively the pore spaces of porous media (rather than both the pore and grain spaces). This feature diminishes required computer memory. Second, PIPN represents the boundary of pore spaces smoothly and realistically (rather than pixel-wise representations). Third, spatial resolution can vary over the physical domain (rather than equally spaced resolutions). This feature enables users to reach an optimal resolution with a minimum computational cost. The performance of our framework is evaluated by the study of the influence of noisy sensor data, pressure observations, and spatial correlation length.
What problem does this paper attempt to address?
The main problem that this paper attempts to solve is: **How to use sparse observational data and Physics - Informed PointNet (PIPN) to predict the pore - scale flow of fluids in porous media**. Specifically, the research aims to improve the prediction accuracy of the fluid velocity and pressure fields in porous media by introducing a new deep - learning framework - Physics - Informed PointNet (PIPN), especially in the case of only sparse observational data.
### Research Background and Motivation
In recent years, deep - learning techniques have been increasingly applied in porous media research, including core - image segmentation, reconstruction and resolution enhancement, prediction of geometric features (such as porosity), physical properties (such as permeability, effective diffusivity, wave - propagation speed, etc.), and prediction of the fluid velocity and pressure fields in the pore space. However, existing methods have some limitations:
1. **Require a large amount of training data**: Generating and collecting labeled data is very expensive both computationally and experimentally.
2. **CNN input - output problems**: Traditional CNNs need to process not only the pore space but also the solid - particle space, which increases the memory requirements.
3. **Inaccurate geometric representation**: Since CNNs require the input data to be in a uniform - grid format, this may lead to an untrue representation of the pore - space geometry, especially near the pore - particle boundary.
4. **Poor resolution flexibility**: To increase the resolution in a certain area, the user must increase the grid resolution throughout the domain, resulting in high computational costs.
### Solutions
To solve the above problems, the author introduced **Physics - Informed PointNet (PIPN)**, which is a weakly - supervised learning framework. The main advantages of PIPN include:
1. **Only sparse scattered - point data are required**: Only a small amount of scattered - point data is needed for prediction.
2. **Flexible point - cloud representation**: The spatial density of the point cloud can be freely adjusted, so as to represent the pore space and its boundary more realistically.
3. **No interpolation is required**: Unstructured - grid data can be directly processed, avoiding the errors caused by interpolation.
4. **Variable resolution**: Different resolutions can be set in different areas to optimize the use of computational resources.
### Specific Objectives
The specific objectives of this research are:
- To predict the velocity and pressure fields of Stokes flow in porous media using sparse observational data and Physics - Informed PointNet (PIPN).
- To evaluate the influence of different factors (such as spatial correlation length, noisy sensor data, pressure observations, average sensor spatial distance, etc.) on the prediction results.
- To verify the robustness and accuracy of PIPN in porous media with different complexities.
### Mathematical Models and Methods
The mathematical model used in the paper is based on the Stokes equation, which describes the steady - state flow of an incompressible viscous fluid in a porous medium. The specific equations are as follows:
\[
\nabla \cdot \mathbf{u} = 0 \quad \text{in } V \tag{1}
\]
\[
\nabla p - \mu \Delta \mathbf{u} = 0 \quad \text{in } V \tag{2}
\]
where \(\mathbf{u}\) and \(p\) represent the fluid velocity vector and pressure respectively, \(\mu\) is the dynamic viscosity of the fluid, and \(V\) represents the pore space of the porous medium.
The loss function of PIPN consists of multiple parts, including mass conservation, momentum conservation, no - slip boundary conditions, matching errors of sparse observational data, etc. The specific form of the loss function is as follows:
\[
J = \lambda_1 r_{\text{continuity}} + \lambda_2 r_{\text{momentum x}} + \lambda_3 r_{\text{momentum y}} + \lambda_4 r_{\text{velocity wall}} + \lambda_5 r_{\text{velocity obs}} + \lambda_6 r_{\text{pressure obs}}
\]
where...