This commit introduces a new function,
Opm::checkConsistentArrayDimensions()
that inspects various dynamic array/table sizes and compares those
to the maximum dimensions requested in the relevant *DIMS keywords
of the RUNSPEC section.
At present we check only items one through four of WELLDIMS since
those are directly relevant for the ECLIPSE-compatible output code.
We leverage the ErrorGuard to integrate into the existing mechanism
for terminating a simulation run if there's a parse failure.
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
/*
|
|
Copyright (c) 2019 Equinor 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_ARRAYDIM_CHECKER_HPP
|
|
#define OPM_ARRAYDIM_CHECKER_HPP
|
|
|
|
#include <cstddef>
|
|
|
|
namespace Opm {
|
|
class ErrorGuard;
|
|
class EclipseState;
|
|
class ParseContext;
|
|
class Schedule;
|
|
} // Opm
|
|
|
|
namespace Opm {
|
|
int maxGroupSize(const Schedule& sched,
|
|
const std::size_t step);
|
|
|
|
void checkConsistentArrayDimensions(const EclipseState& es,
|
|
const Schedule& sched,
|
|
const ParseContext& ctxt,
|
|
ErrorGuard& guard);
|
|
} // Opm
|
|
|
|
#endif // OPM_ARRAYDIM_CHECKER_HPP
|