HowTo post-process multiphase results

From OpenFOAMWiki
Revision as of 13:14, 6 October 2013 by Wyldckat (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

1 Introduction

OpenFOAM handles multiphase simulations with the interFoam solvers through using a single field that represents the phase present at a certain cell, face or vertex. The field is usually named alpha or alpha1.

Therefore, given that it's a single field, this means that:

  1. values of 0 indicates that the phase at that cell/face/vertex is only the first phase;
  2. while 1 indicates that it's only the second phase.
  3. Anything in between is a mixture of the two phases, at a reason implied by the value.

The simplest example is 0.5, which means that it's a mix of equal proportion of the first and the second phase. In other words, this should be an indication of where the separation surface is between each phase.

Notes
  • Make sure to study well the tutorial damBreak, as explained in OpenFOAM's User Guide: 2.3 Breaking of a dam


2 Steps using paraFoam

  1. After running the multiphase solver, run paraFoam:
    paraFoam


3 Tips