Skip to content

Commit

Permalink
Streamlines doc updated with brief description of algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
steinid committed Mar 11, 2021
1 parent d4b0887 commit 455fd69
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions content/3d-main-window/Streamlines.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ weight = 50

Streamlines lets the user investigate the flow of different phases through a reservoar. It allows for selecting both an individual phase or a combination of phases colored by the dominant phase or velocity. The visualization and animation of streamlines requires the Eclipse properties **FLRGASI/J/K FLRWATI/J/K FLROILI/J/K**.

### Displaying Streamlines
## Displaying Streamlines

To display streamlines, select a time step and check the **Streamlines** checkbox in **Project Tree**.

![]({{< relref "" >}}images/3d-main-window/StreamlinesProjectTreeCheckBox.png)


### Property Editor
## Property Editor
The display and animation of streamlines is controlled by the **Property Editor**.

![]({{< relref "" >}}images/3d-main-window/StreamlinesPropertyEditor.png)
Expand All @@ -40,3 +40,15 @@ The following groups of settings control the content, display and animation of s
- **Tracer Length**: Adjust the length of the individual tracers pertinent to a streamline.

In case **Visualization Mode** is set to **Manual control**, the setting **Animation Index** replaces the two latter settings. **Animation Index** allows for displaying an individual animation step.


## Algorithm in brief
Streamlines are generated by starting in open injector well cells and tracing out through the face with the largest flow rate (in m/day) into the next cell and so on. If flow rates above the given threshold exists for multiple cell faces, additional trace branches are spawned off for those faces. The distance between each point added to a trace is controlled by the resolution, as $ distance = rate * resolution $ in days. The trace ends when either:

- the flow goes below the user specified threshold
- the maximum number of days since the start of the trace have been reached
- a cell that already has a trace in it is encountered
- an active well cell is encountered

Streamlines could also be generated using production wells as starting cells. In that case, the flow is reversed and the flow is traced backwards from the starting well using the same algorithm as for injector wells. Once reaching the end, the trace is reversed again to have the flow go into the production well in the final streamline.

0 comments on commit 455fd69

Please sign in to comment.