Skip to content

Commit

Permalink
Whats new in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
magnesj committed Mar 13, 2024
1 parent c05271c commit bb98774
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 3 deletions.
3 changes: 3 additions & 0 deletions content/calculated-data/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ published = true
weight = 40
+++

ResInsight offers a built-in calculators for both summary curves and grid parameters. These expressions can be stored to text files for later use.

Other more specialized calculations are also available, such as fault distance, geomechanical results, and calculation of statistics for grid cell values.
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ weight = 30
**Workflow description**

- Import an ensemble of grid models with identical IJK into a **Grid Case Group**.
- Create a view on one of the source grid models, and create a cell filter.
- Create a view on one of the source grid models, and create a cell filter for the region of interest.
- Create an expression for mobile oil `MOBILE_OIL := if(((SOIL-SOWCR) < 0.00), 0.00, PORV*(SOIL-SOWCR))`
- Optionally select a subset of time steps
- Create an expression to sum values for all visible cells `SUM_MOBILE_OIL := sum(MOBILE_OIL)` Use the result from the previous calculation as input to the variable, use `MOBILE_OIL` from the **Generated** category.
- Select a subset of time steps. This will significantly affect performance for for large grids with many time steps.
- Create an expression to aggregate values for all visible cells `SUM_MOBILE_OIL := sum(MOBILE_OIL)` Use the result from the previous calculation as input to the variable, use `MOBILE_OIL` from the **Generated** category.
- Make sure **Apply to All Cases** is checked.
- The individual values for each realization and time step is displayed as text in **Messages**. The statistics for each time step is displayed at the bottom.


Expand Down
2 changes: 2 additions & 0 deletions content/getting-started/download-and-install/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ ResInsight is under continuous development targeting two major releases per year
For an overview of some of its new and exciting features, see the following:


- [ ResInsight 2024.03 ]({{< ref "releasenotes_2024_03.md" >}})

- [ ResInsight 2023.12 ]({{< ref "releasenotes_2023_12.md" >}})

- [ ResInsight 2023.10 ]({{< ref "releasenotes_2023_10.md" >}})
Expand Down
43 changes: 43 additions & 0 deletions content/getting-started/whats-new/releasenotes_2024_03.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
+++
title = "What's New in 2024.03"
published = true
weight = 10
hidden = true
+++

## Grid Calculations

- [Grid Property Calculations]({{< relref "gridpropertycalculator" >}}) perform better for multiple (large) grid models

## Polygons
- [Polygons]({{< relref "polygons" >}}) are now available as project objects, and a can be displayed in 3D views. A polygon can be used to define an intersection and polygon cell filters. Polygons can be imported from a file, or created from a selection of cells in the 3D view. Polygons can be exported to a file.
- A polygon cell filter can now be configured to use a polyline to define intersected cells in addition to a closed polygon.

## Performance Tools and Improvements
- When working with multiple large grid models, it is possible to run into low memory issues. The memory consumption of ResInsight can be monitored using the new [Memory Report Dialog]({{< relref "memorymanagement" >}}) . This will display the consumed memory for all cases in the project.

TODO: Add memory management image

- Avoid allocation of formations data if no formations are present
- Added support for export of application log messages to file in addition to the **Messages Window**.

TODO: Add preferences
-




## Other improvements
- Wrong unit conversion for field units made **Well Allocation Plot** unreadable [GitHub issue](https://github.com/OPM/ResInsight/issues/11231)
- Improved plot names and ordering of **Flow Diagnostics Plots**
- Improve curve legend names for calculated curves
- Improve MSW and short valve well visualization [GitHub issue](https://github.com/OPM/ResInsight/issues/11109)
- Fix windows tiling issue

## Python API
- Added completion export parameters and multi segment well options [GitHub issue](https://github.com/OPM/ResInsight/issues/10781)




See [**Release Notes on GitHub**](https://github.com/OPM/ResInsight/releases/) for further details and information.

0 comments on commit bb98774

Please sign in to comment.