clean up some comments

- simulator note was copied from the typetag dependent class (EclWriter)
- opm-output is no longer a separate module
This commit is contained in:
Arne Morten Kvarving 2024-06-25 10:51:48 +02:00
parent d7d74d3a3e
commit 981a5f8a14
2 changed files with 2 additions and 5 deletions

View File

@ -69,9 +69,6 @@ class EclGenericWriter
using TransmissibilityType = Transmissibility<Grid,GridView,ElementMapper,CartesianIndexMapper,Scalar>; using TransmissibilityType = Transmissibility<Grid,GridView,ElementMapper,CartesianIndexMapper,Scalar>;
public: public:
// The Simulator object should preferably have been const - the
// only reason that is not the case is due to the SummaryState
// object owned deep down by the vanguard.
EclGenericWriter(const Schedule& schedule, EclGenericWriter(const Schedule& schedule,
const EclipseState& eclState, const EclipseState& eclState,
const SummaryConfig& summaryConfig, const SummaryConfig& summaryConfig,

View File

@ -85,11 +85,11 @@ class UDQState;
/*! /*!
* \ingroup EclBlackOilSimulator * \ingroup EclBlackOilSimulator
* *
* \brief Collects necessary output values and pass it to opm-output. * \brief Collects necessary output values and pass it to opm-common's ECL output.
* *
* Caveats: * Caveats:
* - For this class to do do anything meaningful, you will have to * - For this class to do do anything meaningful, you will have to
* have the OPM module opm-output. * have the OPM module opm-common with ECL writing enabled.
* - The only DUNE grid which is currently supported is Dune::CpGrid * - The only DUNE grid which is currently supported is Dune::CpGrid
* from the OPM module "opm-grid". Using another grid won't * from the OPM module "opm-grid". Using another grid won't
* fail at compile time but you will provoke a fatal exception as * fail at compile time but you will provoke a fatal exception as