Skip to content

Commit 31710a8

Browse files
committed
Explains mobile volume weighted mean calculation
Adds a dedicated section explaining the calculation of the mobile volume weighted mean and links it from the 3D view info text. This provides users with a clear understanding of how this key statistic is derived and its significance.
1 parent c690901 commit 31710a8

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

content/3d-main-window/3DViews.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The **Animation Progress** shows which time step you are viewing.
5252

5353
![](/images/3d-main-window/AnimationProgress.png)
5454

55-
The **Info Text** shows general info about the case, the selected results, and some statistics. **Mobile Volume Weighted Mean** is the mean of the current **Cell Property** weighted by the **Mobile pore volume**. Mobile pore volume is defined in every cell as: MULTPV _*_ PORV(1-SWCR). If MULTPV data is not present, it is ignored in the equation. The same applies to SWCR data.
55+
The **Info Text** shows general info about the case, the selected results, and some statistics. **Mobile Volume Weighted Mean** is the mean of the current **Cell Property** weighted by the **Mobile pore volume**. For details, see [Derived Results]({{% relref "derivedresults" %}}#mobile-volume-weighted-mean)
5656

5757
![](/images/3d-main-window/infoBox.png)
5858

content/calculated-data/DerivedResults.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,22 @@ Water Flooded PV, also called _Number of flooded porevolumes_ shows the amount o
7777
Mobile Pore Volume **MOBPORV** is computed based on the grid cell properties **PORV**, **SWCR** and **MULTPV**.
7878

7979
If **MULTPV** is missing, **MULTPV** is set to 1.0.
80-
If **SWCR** is missing, **SWCR** is et to 0.0.
80+
If **SWCR** is missing, **SWCR** is set to 0.0.
8181

8282
$ MOBPORV = MULTPV * PORV * (1.0 - SWCR) $
8383

84+
### Mobile Volume Weighted Mean
85+
86+
The **Mobile Volume Weighted Mean** is a statistical calculation that provides a more physically meaningful average of reservoir properties by weighting each cell's contribution according to its mobile pore volume.
87+
88+
This values is displayed as text in the [Info Box in the 3D view]({{% relref "3dviews" %}}#info-box).
89+
90+
$ Weighted Mean = Σ(MOBPORV × Value) / Σ(MOBPORV) $
91+
92+
Where:
93+
- **MOBPORV** = Mobile Pore Volume (weight for each cell)
94+
- **Value** = The reservoir property being averaged (e.g., pressure, saturation)
95+
8496
### Cell Volume
8597

8698
The static property **riCellVolume** contains the geometrical volume of a cell.

0 commit comments

Comments
 (0)