Merge pull request #817 from akva2/janitoring

Some janitoring
This commit is contained in:
Joakim Hove
2019-06-15 07:49:39 +02:00
committed by GitHub
5 changed files with 7 additions and 8 deletions

View File

@@ -41,7 +41,7 @@ namespace Opm {
class DeckRecord;
class EclipseGrid;
class DeckKeyword;
class WellInjectionProperties;
struct WellInjectionProperties;
class WellProductionProperties;
struct WellGuideRate {

View File

@@ -192,7 +192,7 @@ namespace {
const auto nsegwl =
std::count_if(std::begin(sched_wells), std::end(sched_wells),
[lookup_step](const Opm::Well2& well)
[](const Opm::Well2& well)
{
return well.isMultiSegment();
});

View File

@@ -382,8 +382,7 @@ inline quantity rate( const fn_args& args ) {
template< bool injection >
inline quantity flowing( const fn_args& args ) {
const auto& wells = args.wells;
const auto ts = args.sim_step;
auto pred = [&wells,ts]( const Well2& w ) {
auto pred = [&wells]( const Well2& w ) {
const auto& name = w.name();
return w.isInjector( ) == injection
&& wells.count( name ) > 0

View File

@@ -68,8 +68,8 @@ namespace Opm {
const std::string& well_name = compsegsKeyword.getRecord(0).getItem("WELL").getTrimmedString(0);
double distance_start;
double distance_end;
double distance_start = 0.0;
double distance_end = -1.0;
if (record.getItem<ParserKeywords::COMPSEGS::DISTANCE_START>().hasValue(0)) {
distance_start = record.getItem<ParserKeywords::COMPSEGS::DISTANCE_START>().getSIDouble(0);
} else if (recordIndex == 1) {

View File

@@ -66,8 +66,8 @@ public:
static UDQASTNode parse(const UDQParams& udq_params, UDQVarType target_type, const std::string& target_var, const std::vector<std::string>& tokens, const ParseContext& parseContext, ErrorGuard& errors);
private:
UDQParser(const UDQParams& udq_params, const std::vector<std::string>& tokens) :
udq_params(udq_params),
UDQParser(const UDQParams& udq_params1, const std::vector<std::string>& tokens) :
udq_params(udq_params1),
udqft(UDQFunctionTable(udq_params)),
tokens(tokens)
{}