78 lines
2.3 KiB
C++
78 lines
2.3 KiB
C++
/*
|
|
Copyright 2016 Statoil ASA.
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
OPM is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OPM is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef OPM_OUTPUT_CELLS_HPP
|
|
#define OPM_OUTPUT_CELLS_HPP
|
|
|
|
#include <map>
|
|
#include <vector>
|
|
|
|
#include <opm/parser/eclipse/Units/UnitSystem.hpp>
|
|
|
|
namespace Opm {
|
|
|
|
namespace data {
|
|
|
|
|
|
/*
|
|
The 3D data which are saved to file are assembled in one large
|
|
container. In the container the data is tagged with an element
|
|
from the TargetType enum which indicates why they they have been
|
|
added to the container - and where they are headed.
|
|
|
|
RESTART_SOLUTION : Fields which represent primary variables, and
|
|
are reqired for restart. Typically pressure and
|
|
suturation. WIll end up in the SOLUTION section of the restart
|
|
file.
|
|
|
|
RESTART_AUXILIARY : Fields with extra information, not required
|
|
for restart. Examples of this include fluid in place values or
|
|
evaluations of relative permeability. Will end up in the
|
|
restart file.
|
|
|
|
SUMMARY : Fields which are added only to serve as input data for
|
|
calculations of summary results. The Summary implementation can
|
|
use data with any tag value, but if it is tagged as SUMMARY it
|
|
will not be output anywhere else.
|
|
|
|
INIT : Fields which should go to the INIT file.
|
|
*/
|
|
|
|
|
|
enum class TargetType {
|
|
RESTART_SOLUTION,
|
|
RESTART_AUXILIARY,
|
|
SUMMARY,
|
|
INIT,
|
|
};
|
|
|
|
/**
|
|
* Small struct that keeps track of data for output to restart/summary files.
|
|
*/
|
|
struct CellData {
|
|
UnitSystem::measure dim; //< Dimension of the data to write
|
|
std::vector<double> data; //< The actual data itself
|
|
TargetType target;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif //OPM_OUTPUT_CELLS_HPP
|