Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions opm/material/fluidsystems/BlackOilDefaultIndexTraits.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ class BlackOilDefaultIndexTraits
static constexpr unsigned gasPhaseIdx = 2;

//! Index of the oil component
static constexpr int oilCompIdx = 0;
static constexpr int oilCompIdx = 1;
//! Index of the water component
static constexpr int waterCompIdx = 1;
static constexpr int waterCompIdx = 0;
//! Index of the gas component
static constexpr int gasCompIdx = 2;
};
Expand Down