// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- // vi: set et ts=4 sw=4 sts=4: /* 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 2 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 . Consult the COPYING file in the top-level source directory of this module for the precise wording of the license and the list of copyright holders. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace { std::string EclString(const Opm::Inplace::Phase phase) { switch (phase) { case Opm::Inplace::Phase::WATER: return "WIP"; case Opm::Inplace::Phase::OIL: return "OIP"; case Opm::Inplace::Phase::GAS: return "GIP"; case Opm::Inplace::Phase::OilInLiquidPhase: return "OIPL"; case Opm::Inplace::Phase::OilInGasPhase: return "OIPG"; case Opm::Inplace::Phase::GasInLiquidPhase: return "GIPL"; case Opm::Inplace::Phase::GasInGasPhase: return "GIPG"; case Opm::Inplace::Phase::PoreVolume: return "RPV"; case Opm::Inplace::Phase::WaterResVolume: return "WIPR"; case Opm::Inplace::Phase::OilResVolume: return "OIPR"; case Opm::Inplace::Phase::GasResVolume: return "GIPR"; case Opm::Inplace::Phase::SALT: return "SIP"; case Opm::Inplace::Phase::CO2InWaterPhase: return "WCD"; case Opm::Inplace::Phase::CO2InGasPhaseInMob: return "GCDI"; case Opm::Inplace::Phase::CO2InGasPhaseMob: return "GCDM"; case Opm::Inplace::Phase::CO2InGasPhaseInMobKrg: return "GKDI"; case Opm::Inplace::Phase::CO2InGasPhaseMobKrg: return "GKDM"; case Opm::Inplace::Phase::WaterInGasPhase: return "WIPG"; case Opm::Inplace::Phase::WaterInWaterPhase: return "WIPL"; case Opm::Inplace::Phase::CO2Mass: return "GMIP"; case Opm::Inplace::Phase::CO2MassInWaterPhase: return "GMDS"; case Opm::Inplace::Phase::CO2MassInGasPhase: return "GMGP"; case Opm::Inplace::Phase::CO2MassInGasPhaseInMob: return "GCDI_KG"; //Not used case Opm::Inplace::Phase::CO2MassInGasPhaseMob: return "GKDM_KG"; //Not used case Opm::Inplace::Phase::CO2MassInGasPhaseInMobKrg: return "GKTR"; case Opm::Inplace::Phase::CO2MassInGasPhaseMobKrg: return "GKMO"; case Opm::Inplace::Phase::CO2MassInGasPhaseMaximumTrapped: return "GMTR"; case Opm::Inplace::Phase::CO2MassInGasPhaseMaximumUnTrapped: return "GMMO"; case Opm::Inplace::Phase::CO2MassInGasPhaseEffectiveTrapped: return "GMST"; case Opm::Inplace::Phase::CO2MassInGasPhaseEffectiveUnTrapped: return "GMUS"; default: throw std::logic_error { fmt::format("Phase enum with integer value: " "{} not recognized", static_cast(phase)) }; } } std::size_t numCells(const Opm::EclipseState& eclState) { return eclState.fieldProps().get_int("FIPNUM").size(); } std::vector defineInterRegionFlowArrays(const Opm::EclipseState& eclState, const Opm::SummaryConfig& summaryConfig) { auto regions = std::vector{}; const auto& fprops = eclState.fieldProps(); for (const auto& arrayName : summaryConfig.fip_regions_interreg_flow()) { regions.push_back({ arrayName, std::cref(fprops.get_int(arrayName)) }); } return regions; } } namespace Opm { template GenericOutputBlackoilModule:: GenericOutputBlackoilModule(const EclipseState& eclState, const Schedule& schedule, const SummaryConfig& summaryConfig, const SummaryState& summaryState, const std::string& moduleVersion, bool enableEnergy, bool enableTemperature, bool enableMech, bool enableSolvent, bool enablePolymer, bool enableFoam, bool enableBrine, bool enableSaltPrecipitation, bool enableExtbo, bool enableMICP, bool isCompositional) : eclState_(eclState) , schedule_(schedule) , summaryState_(summaryState) , summaryConfig_(summaryConfig) , interRegionFlows_(numCells(eclState), defineInterRegionFlowArrays(eclState, summaryConfig), declaredMaxRegionID(eclState.runspec())) , logOutput_(eclState, schedule, summaryState, moduleVersion) , enableEnergy_(enableEnergy) , enableTemperature_(enableTemperature) , enableMech_(enableMech) , enableSolvent_(enableSolvent) , enablePolymer_(enablePolymer) , enableFoam_(enableFoam) , enableBrine_(enableBrine) , enableSaltPrecipitation_(enableSaltPrecipitation) , enableExtbo_(enableExtbo) , enableMICP_(enableMICP) , isCompositional_(isCompositional) , local_data_valid_(false) { const auto& fp = eclState_.fieldProps(); this->regions_["FIPNUM"] = fp.get_int("FIPNUM"); for (const auto& region : fp.fip_regions()) { this->regions_[region] = fp.get_int(region); } this->RPRNodes_ = summaryConfig_.keywords("RPR*"); this->RPRPNodes_ = summaryConfig_.keywords("RPRP*"); for (const auto& phase : Inplace::phases()) { std::string key_pattern = "R" + EclString(phase) + "*"; this->regionNodes_[phase] = summaryConfig_.keywords(key_pattern); } // Check for any BFLOW[I|J|K] summary keys blockFlows_ = summaryConfig_.keywords("BFLOW*").size() > 0; // Check if FLORES/FLOWS is set in any RPTRST in the schedule anyFlores_ = false; // Used for the initialization of the sparse table anyFlows_ = blockFlows_; enableFlores_ = false; // Used for the output of i+, j+, k+ enableFloresn_ = false; // Used for the special case of nnc enableFlows_ = false; enableFlowsn_ = false; for (const auto& block : this->schedule_) { const auto& rstkw = block.rst_config().keywords; if (! anyFlores_) { anyFlores_ = rstkw.find("FLORES") != rstkw.end(); } if (! anyFlows_) { anyFlows_ = rstkw.find("FLOWS") != rstkw.end(); } if (anyFlores_ && anyFlows_) { // Terminate report step loop early if both FLORES and FLOWS // have been set at some point as there's no need to search // any further in that case. break; } } } template GenericOutputBlackoilModule:: ~GenericOutputBlackoilModule() = default; template void GenericOutputBlackoilModule:: outputTimeStamp(const std::string& lbl, const double elapsed, const int rstep, const boost::posix_time::ptime currentDate) { logOutput_.timeStamp(lbl, elapsed, rstep, currentDate); } template void GenericOutputBlackoilModule:: prepareDensityAccumulation() { if (this->regionAvgDensity_.has_value()) { this->regionAvgDensity_->prepareAccumulation(); } } template void GenericOutputBlackoilModule:: accumulateDensityParallel() { if (this->regionAvgDensity_.has_value()) { this->regionAvgDensity_->accumulateParallel(); } } template void GenericOutputBlackoilModule:: outputCumLog(std::size_t reportStepNum) { this->logOutput_.cumulative(reportStepNum); } template void GenericOutputBlackoilModule:: outputProdLog(std::size_t reportStepNum) { this->logOutput_.production(reportStepNum); } template void GenericOutputBlackoilModule:: outputInjLog(std::size_t reportStepNum) { this->logOutput_.injection(reportStepNum); } template Inplace GenericOutputBlackoilModule:: calc_inplace(std::map& miscSummaryData, std::map>& regionData, const Parallel::Communication& comm) { auto inplace = this->accumulateRegionSums(comm); if (comm.rank() != 0) return inplace; updateSummaryRegionValues(inplace, miscSummaryData, regionData); return inplace; } template void GenericOutputBlackoilModule:: outputFipAndResvLog(const Inplace& inplace, const std::size_t reportStepNum, double elapsed, boost::posix_time::ptime currentDate, const bool substep, const Parallel::Communication& comm) { if (comm.rank() != 0) return; // For report step 0 we use the RPTSOL config, else derive from RPTSCHED std::unique_ptr fipSched; if (reportStepNum > 0) { const auto& rpt = this->schedule_[reportStepNum-1].rpt_config.get(); fipSched = std::make_unique(rpt); } const FIPConfig& fipc = reportStepNum == 0 ? this->eclState_.getEclipseConfig().fip() : *fipSched; if (!substep && !forceDisableFipOutput_ && fipc.output(FIPConfig::OutputField::FIELD)) { logOutput_.timeStamp("BALANCE", elapsed, reportStepNum, currentDate); logOutput_.fip(inplace, this->initialInplace(), ""); if (fipc.output(FIPConfig::OutputField::FIPNUM)) { logOutput_.fip(inplace, this->initialInplace(), "FIPNUM"); if (fipc.output(FIPConfig::OutputField::RESV)) logOutput_.fipResv(inplace, "FIPNUM"); } if (fipc.output(FIPConfig::OutputField::FIP)) { for (const auto& reg : this->regions_) { if (reg.first != "FIPNUM") { std::ostringstream ss; ss << "BAL" << reg.first.substr(3); logOutput_.timeStamp(ss.str(), elapsed, reportStepNum, currentDate); logOutput_.fip(inplace, this->initialInplace(), reg.first); if (fipc.output(FIPConfig::OutputField::RESV)) logOutput_.fipResv(inplace, reg.first); } } } } } template void GenericOutputBlackoilModule:: accumulateRftDataParallel(const Parallel::Communication& comm) { if (comm.size() > 1) { collectRftMapOnRoot(oilConnectionPressures_, comm); collectRftMapOnRoot(waterConnectionSaturations_, comm); collectRftMapOnRoot(gasConnectionSaturations_, comm); } } template void GenericOutputBlackoilModule:: collectRftMapOnRoot(std::map& local_map, const Parallel::Communication& comm) { std::vector> pairs(local_map.begin(), local_map.end()); std::vector> all_pairs; std::vector offsets; std::tie(all_pairs, offsets) = Opm::gatherv(pairs, comm, 0); // Insert/update map values on root if (comm.rank() == 0) { for (auto i=static_cast(offsets[1]); isecond; candidate->second = std::max(prev_value, key_value.second); } else { local_map[key_value.first] = key_value.second; } } } } template void GenericOutputBlackoilModule:: addRftDataToWells(data::Wells& wellDatas, std::size_t reportStepNum) { const auto& rft_config = schedule_[reportStepNum].rft_config(); for (const auto& well: schedule_.getWells(reportStepNum)) { // don't bother with wells not on this process if (isDefunctParallelWell(well.name())) { continue; } //add data infrastructure for shut wells if (!wellDatas.count(well.name())) { data::Well wellData; if (!rft_config.active()) continue; wellData.connections.resize(well.getConnections().size()); std::size_t count = 0; for (const auto& connection: well.getConnections()) { const std::size_t i = std::size_t(connection.getI()); const std::size_t j = std::size_t(connection.getJ()); const std::size_t k = std::size_t(connection.getK()); const std::size_t index = eclState_.gridDims().getGlobalIndex(i, j, k); auto& connectionData = wellData.connections[count]; connectionData.index = index; count++; } wellDatas.emplace(std::make_pair(well.name(), wellData)); } data::Well& wellData = wellDatas.at(well.name()); for (auto& connectionData: wellData.connections) { const auto index = connectionData.index; if (oilConnectionPressures_.count(index) > 0) connectionData.cell_pressure = oilConnectionPressures_.at(index); if (waterConnectionSaturations_.count(index) > 0) connectionData.cell_saturation_water = waterConnectionSaturations_.at(index); if (gasConnectionSaturations_.count(index) > 0) connectionData.cell_saturation_gas = gasConnectionSaturations_.at(index); } } oilConnectionPressures_.clear(); waterConnectionSaturations_.clear(); gasConnectionSaturations_.clear(); } template void GenericOutputBlackoilModule:: assignToSolution(data::Solution& sol) { using DataEntry = std::tuple&>; auto doInsert = [&sol](const DataEntry& entry, const data::TargetType target) { if (std::get<2>(entry).empty()) { return; } sol.insert(std::get(entry), std::get(entry), std::move(std::get<2>(entry)), target); }; // if index not specified, we treat it as valid (>= 0) auto addEntry = [](std::vector& container, const std::string& name, UnitSystem::measure measure, const auto& flowArray, int index = 1) { if (index >= 0) { // Only add if index is valid container.emplace_back(name, measure, flowArray); } }; std::vector baseSolutionVector; addEntry(baseSolutionVector, "1OVERBG", UnitSystem::measure::gas_inverse_formation_volume_factor, invB_[gasPhaseIdx], gasPhaseIdx); addEntry(baseSolutionVector, "1OVERBO", UnitSystem::measure::oil_inverse_formation_volume_factor, invB_[oilPhaseIdx], oilPhaseIdx); addEntry(baseSolutionVector, "1OVERBW", UnitSystem::measure::water_inverse_formation_volume_factor, invB_[waterPhaseIdx], waterPhaseIdx); addEntry(baseSolutionVector, "FLRGASI+", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::XPlus)][gasCompIdx], gasCompIdx); addEntry(baseSolutionVector, "FLRGASJ+", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::YPlus)][gasCompIdx], gasCompIdx); addEntry(baseSolutionVector, "FLRGASK+", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::ZPlus)][gasCompIdx], gasCompIdx); addEntry(baseSolutionVector, "FLROILI+", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::XPlus)][oilCompIdx], oilCompIdx); addEntry(baseSolutionVector, "FLROILJ+", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::YPlus)][oilCompIdx], oilCompIdx); addEntry(baseSolutionVector, "FLROILK+", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::ZPlus)][oilCompIdx], oilCompIdx); addEntry(baseSolutionVector, "FLRWATI+", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::XPlus)][waterCompIdx], waterCompIdx); addEntry(baseSolutionVector, "FLRWATJ+", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::YPlus)][waterCompIdx], waterCompIdx); addEntry(baseSolutionVector, "FLRWATK+", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::ZPlus)][waterCompIdx], waterCompIdx); addEntry(baseSolutionVector, "FOAM", UnitSystem::measure::identity, cFoam_); addEntry(baseSolutionVector, "GASKR", UnitSystem::measure::identity, relativePermeability_[gasPhaseIdx], gasPhaseIdx); addEntry(baseSolutionVector, "GAS_DEN", UnitSystem::measure::density, density_[gasPhaseIdx], gasPhaseIdx); addEntry(baseSolutionVector, "GAS_VISC", UnitSystem::measure::viscosity, viscosity_[gasPhaseIdx], gasPhaseIdx); addEntry(baseSolutionVector, "OILKR", UnitSystem::measure::identity, relativePermeability_[oilPhaseIdx], oilPhaseIdx); addEntry(baseSolutionVector, "OIL_DEN", UnitSystem::measure::density, density_[oilPhaseIdx], oilPhaseIdx); addEntry(baseSolutionVector, "OIL_VISC", UnitSystem::measure::viscosity, viscosity_[oilPhaseIdx], oilPhaseIdx); addEntry(baseSolutionVector, "PBUB", UnitSystem::measure::pressure, bubblePointPressure_); addEntry(baseSolutionVector, "PCGW", UnitSystem::measure::pressure, pcgw_); addEntry(baseSolutionVector, "PCOG", UnitSystem::measure::pressure, pcog_); addEntry(baseSolutionVector, "PCOW", UnitSystem::measure::pressure, pcow_); addEntry(baseSolutionVector, "PDEW", UnitSystem::measure::pressure, dewPointPressure_); addEntry(baseSolutionVector, "POLYMER", UnitSystem::measure::identity, cPolymer_); addEntry(baseSolutionVector, "PPCW", UnitSystem::measure::pressure, ppcw_); addEntry(baseSolutionVector, "PRESROCC", UnitSystem::measure::pressure, minimumOilPressure_); addEntry(baseSolutionVector, "PRESSURE", UnitSystem::measure::pressure, fluidPressure_); addEntry(baseSolutionVector, "RPORV", UnitSystem::measure::volume, rPorV_); addEntry(baseSolutionVector, "RS", UnitSystem::measure::gas_oil_ratio, rs_); addEntry(baseSolutionVector, "RSSAT", UnitSystem::measure::gas_oil_ratio, gasDissolutionFactor_); addEntry(baseSolutionVector, "RV", UnitSystem::measure::oil_gas_ratio, rv_); addEntry(baseSolutionVector, "RVSAT", UnitSystem::measure::oil_gas_ratio, oilVaporizationFactor_); addEntry(baseSolutionVector, "SALT", UnitSystem::measure::salinity, cSalt_); addEntry(baseSolutionVector, "SGMAX", UnitSystem::measure::identity, sgmax_); addEntry(baseSolutionVector, "SHMAX", UnitSystem::measure::identity, shmax_); addEntry(baseSolutionVector, "SOMAX", UnitSystem::measure::identity, soMax_); addEntry(baseSolutionVector, "SOMIN", UnitSystem::measure::identity, somin_); addEntry(baseSolutionVector, "SSOLVENT", UnitSystem::measure::identity, sSol_); addEntry(baseSolutionVector, "SWHY1", UnitSystem::measure::identity, swmin_); addEntry(baseSolutionVector, "SWMAX", UnitSystem::measure::identity, swMax_); addEntry(baseSolutionVector, "WATKR", UnitSystem::measure::identity, relativePermeability_[waterPhaseIdx], waterPhaseIdx); addEntry(baseSolutionVector, "WAT_DEN", UnitSystem::measure::density, density_[waterPhaseIdx], waterPhaseIdx); addEntry(baseSolutionVector, "WAT_VISC", UnitSystem::measure::viscosity, viscosity_[waterPhaseIdx], waterPhaseIdx); // Separate these as flows*_ may be defined due to BFLOW[I|J|K] even without FLOWS in RPTRST std::vector flowsSolutionVector; addEntry(flowsSolutionVector, "FLOGASI+", UnitSystem::measure::gas_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::XPlus)][gasCompIdx], gasCompIdx); addEntry(flowsSolutionVector, "FLOGASJ+", UnitSystem::measure::gas_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::YPlus)][gasCompIdx], gasCompIdx); addEntry(flowsSolutionVector, "FLOGASK+", UnitSystem::measure::gas_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::ZPlus)][gasCompIdx], gasCompIdx); addEntry(flowsSolutionVector, "FLOOILI+", UnitSystem::measure::liquid_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::XPlus)][oilCompIdx], oilCompIdx); addEntry(flowsSolutionVector, "FLOOILJ+", UnitSystem::measure::liquid_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::YPlus)][oilCompIdx], oilCompIdx); addEntry(flowsSolutionVector, "FLOOILK+", UnitSystem::measure::liquid_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::ZPlus)][oilCompIdx], oilCompIdx); addEntry(flowsSolutionVector, "FLOWATI+", UnitSystem::measure::liquid_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::XPlus)][waterCompIdx], waterCompIdx); addEntry(flowsSolutionVector, "FLOWATJ+", UnitSystem::measure::liquid_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::YPlus)][waterCompIdx], waterCompIdx); addEntry(flowsSolutionVector, "FLOWATK+", UnitSystem::measure::liquid_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::ZPlus)][waterCompIdx], waterCompIdx); addEntry(flowsSolutionVector, "FLOGASI-", UnitSystem::measure::gas_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::XMinus)][gasCompIdx], gasCompIdx); addEntry(flowsSolutionVector, "FLOGASJ-", UnitSystem::measure::gas_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::YMinus)][gasCompIdx], gasCompIdx); addEntry(flowsSolutionVector, "FLOGASK-", UnitSystem::measure::gas_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::ZMinus)][gasCompIdx], gasCompIdx); addEntry(flowsSolutionVector, "FLOOILI-", UnitSystem::measure::liquid_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::XMinus)][oilCompIdx], oilCompIdx); addEntry(flowsSolutionVector, "FLOOILJ-", UnitSystem::measure::liquid_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::YMinus)][oilCompIdx], oilCompIdx); addEntry(flowsSolutionVector, "FLOOILK-", UnitSystem::measure::liquid_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::ZMinus)][oilCompIdx], oilCompIdx); addEntry(flowsSolutionVector, "FLOWATI-", UnitSystem::measure::liquid_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::XMinus)][waterCompIdx], waterCompIdx); addEntry(flowsSolutionVector, "FLOWATJ-", UnitSystem::measure::liquid_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::YMinus)][waterCompIdx], waterCompIdx); addEntry(flowsSolutionVector, "FLOWATK-", UnitSystem::measure::liquid_surface_rate, flows_[FaceDir::ToIntersectionIndex(Dir::ZMinus)][waterCompIdx], waterCompIdx); addEntry(flowsSolutionVector, "FLRGASI-", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::XMinus)][gasCompIdx], gasCompIdx); addEntry(flowsSolutionVector, "FLRGASJ-", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::YMinus)][gasCompIdx], gasCompIdx); addEntry(flowsSolutionVector, "FLRGASK-", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::ZMinus)][gasCompIdx], gasCompIdx); addEntry(flowsSolutionVector, "FLROILI-", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::XMinus)][oilCompIdx], oilCompIdx); addEntry(flowsSolutionVector, "FLROILJ-", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::YMinus)][oilCompIdx], oilCompIdx); addEntry(flowsSolutionVector, "FLROILK-", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::ZMinus)][oilCompIdx], oilCompIdx); addEntry(flowsSolutionVector, "FLRWATI-", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::XMinus)][waterCompIdx], waterCompIdx); addEntry(flowsSolutionVector, "FLRWATJ-", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::YMinus)][waterCompIdx], waterCompIdx); addEntry(flowsSolutionVector, "FLRWATK-", UnitSystem::measure::rate, flores_[FaceDir::ToIntersectionIndex(Dir::ZMinus)][waterCompIdx], waterCompIdx); const auto extendedSolutionArrays = std::array { DataEntry{"BIOFILM", UnitSystem::measure::identity, cBiofilm_}, DataEntry{"CALCITE", UnitSystem::measure::identity, cCalcite_}, DataEntry{"DELSTRXX", UnitSystem::measure::pressure, delstressXX_}, DataEntry{"DELSTRYY", UnitSystem::measure::pressure, delstressYY_}, DataEntry{"DELSTRZZ", UnitSystem::measure::pressure, delstressZZ_}, DataEntry{"DELSTRXY", UnitSystem::measure::pressure, delstressXY_}, DataEntry{"DELSTRXZ", UnitSystem::measure::pressure, delstressXZ_}, DataEntry{"DELSTRYZ", UnitSystem::measure::pressure, delstressYZ_}, DataEntry{"DISPX", UnitSystem::measure::length, dispX_}, DataEntry{"DISPY", UnitSystem::measure::length, dispY_}, DataEntry{"DISPZ", UnitSystem::measure::length, dispZ_}, DataEntry{"DRSDTCON", UnitSystem::measure::gas_oil_ratio_rate, drsdtcon_}, DataEntry{"MECHPOTF", UnitSystem::measure::pressure, mechPotentialForce_}, DataEntry{"MICROBES", UnitSystem::measure::density, cMicrobes_}, DataEntry{"OXYGEN", UnitSystem::measure::density, cOxygen_}, DataEntry{"PERMFACT", UnitSystem::measure::identity, permFact_}, DataEntry{"PORV_RC", UnitSystem::measure::identity, rockCompPorvMultiplier_}, DataEntry{"PRESPOTF", UnitSystem::measure::pressure, mechPotentialPressForce_}, DataEntry{"PRES_OVB", UnitSystem::measure::pressure, overburdenPressure_}, DataEntry{"RSW", UnitSystem::measure::gas_oil_ratio, rsw_}, DataEntry{"RSWSAT", UnitSystem::measure::gas_oil_ratio, gasDissolutionFactorInWater_}, DataEntry{"RSWSOL", UnitSystem::measure::gas_oil_ratio, rswSol_}, DataEntry{"RVW", UnitSystem::measure::oil_gas_ratio, rvw_}, DataEntry{"RVWSAT", UnitSystem::measure::oil_gas_ratio, waterVaporizationFactor_}, DataEntry{"SALTP", UnitSystem::measure::identity, pSalt_}, DataEntry{"SS_X", UnitSystem::measure::identity, extboX_}, DataEntry{"SS_Y", UnitSystem::measure::identity, extboY_}, DataEntry{"SS_Z", UnitSystem::measure::identity, extboZ_}, DataEntry{"STD_CO2", UnitSystem::measure::identity, mFracCo2_}, DataEntry{"STD_GAS", UnitSystem::measure::identity, mFracGas_}, DataEntry{"STD_OIL", UnitSystem::measure::identity, mFracOil_}, DataEntry{"STRAINXX", UnitSystem::measure::identity, strainXX_}, DataEntry{"STRAINYY", UnitSystem::measure::identity, strainYY_}, DataEntry{"STRAINZZ", UnitSystem::measure::identity, strainZZ_}, DataEntry{"STRAINXY", UnitSystem::measure::identity, strainXY_}, DataEntry{"STRAINXZ", UnitSystem::measure::identity, strainXZ_}, DataEntry{"STRAINYZ", UnitSystem::measure::identity, strainYZ_}, DataEntry{"STRESSXX", UnitSystem::measure::length, stressXX_}, DataEntry{"STRESSYY", UnitSystem::measure::length, stressYY_}, DataEntry{"STRESSZZ", UnitSystem::measure::length, stressZZ_}, DataEntry{"STRESSXY", UnitSystem::measure::length, stressXY_}, DataEntry{"STRESSXZ", UnitSystem::measure::length, stressXZ_}, DataEntry{"STRESSYZ", UnitSystem::measure::length, stressYZ_}, DataEntry{"TEMPPOTF", UnitSystem::measure::pressure, mechPotentialTempForce_}, DataEntry{"TMULT_RC", UnitSystem::measure::identity, rockCompTransMultiplier_}, DataEntry{"UREA", UnitSystem::measure::density, cUrea_}, }; // basically, for compositional, we can not use std::array for this. We need to generate the ZMF1, ZMF2, and so on // and also, we need to map these values. // TODO: the following should go to a function if (this->isCompositional_) { auto compositionalEntries = std::vector{}; { // ZMF for (int i = 0; i < numComponents; ++i) { const auto name = fmt::format("ZMF{}", i + 1); // Generate ZMF1, ZMF2, ... compositionalEntries.emplace_back(name, UnitSystem::measure::identity, moleFractions_[i]); } // XMF for (int i = 0; i < numComponents; ++i) { const auto name = fmt::format("XMF{}", i + 1); // Generate XMF1, XMF2, ... compositionalEntries.emplace_back(name, UnitSystem::measure::identity, phaseMoleFractions_[oilPhaseIdx][i]); } // YMF for (int i = 0; i < numComponents; ++i) { const auto name = fmt::format("YMF{}", i + 1); // Generate YMF1, YMF2, ... compositionalEntries.emplace_back(name, UnitSystem::measure::identity, phaseMoleFractions_[gasPhaseIdx][i]); } } for (const auto& array: compositionalEntries) { doInsert(array, data::TargetType::RESTART_SOLUTION); } } for (const auto& array : baseSolutionVector) { doInsert(array, data::TargetType::RESTART_SOLUTION); } if (this->enableFlows_) { for (const auto& array : flowsSolutionVector) { doInsert(array, data::TargetType::RESTART_SOLUTION); } } for (const auto& array : extendedSolutionArrays) { doInsert(array, data::TargetType::RESTART_OPM_EXTENDED); } if (! this->temperature_.empty()) { sol.insert("TEMP", UnitSystem::measure::temperature, std::move(this->temperature_), data::TargetType::RESTART_SOLUTION); } if (FluidSystem::phaseIsActive(waterPhaseIdx) && ! this->saturation_[waterPhaseIdx].empty()) { sol.insert("SWAT", UnitSystem::measure::identity, std::move(this->saturation_[waterPhaseIdx]), data::TargetType::RESTART_SOLUTION); } if (FluidSystem::phaseIsActive(gasPhaseIdx) && ! this->saturation_[gasPhaseIdx].empty()) { sol.insert("SGAS", UnitSystem::measure::identity, std::move(this->saturation_[gasPhaseIdx]), data::TargetType::RESTART_SOLUTION); } if (this->isCompositional_ && FluidSystem::phaseIsActive(oilPhaseIdx) && ! this->saturation_[oilPhaseIdx].empty()) { sol.insert("SOIL", UnitSystem::measure::identity, std::move(this->saturation_[oilPhaseIdx]), data::TargetType::RESTART_SOLUTION); } if ((eclState_.runspec().co2Storage() || eclState_.runspec().h2Storage()) && !rsw_.empty()) { auto mfrac = std::vector(this->rsw_.size(), 0.0); std::transform(this->rsw_.begin(), this->rsw_.end(), this->eclState_.fieldProps().get_int("PVTNUM").begin(), mfrac.begin(), [](const auto& rsw, const int pvtReg) { const auto xwg = FluidSystem::convertRswToXwG(rsw, pvtReg - 1); return FluidSystem::convertXwGToxwG(xwg, pvtReg - 1); }); std::string moleFracName = eclState_.runspec().co2Storage() ? "XMFCO2" : "XMFH2"; sol.insert(moleFracName, UnitSystem::measure::identity, std::move(mfrac), data::TargetType::RESTART_OPM_EXTENDED); } if ((eclState_.runspec().co2Storage() || eclState_.runspec().h2Storage()) && !rvw_.empty()) { auto mfrac = std::vector(this->rvw_.size(), 0.0); std::transform(this->rvw_.begin(), this->rvw_.end(), this->eclState_.fieldProps().get_int("PVTNUM").begin(), mfrac.begin(), [](const auto& rvw, const int pvtReg) { const auto xgw = FluidSystem::convertRvwToXgW(rvw, pvtReg - 1); return FluidSystem::convertXgWToxgW(xgw, pvtReg - 1); }); sol.insert("YMFWAT", UnitSystem::measure::identity, std::move(mfrac), data::TargetType::RESTART_OPM_EXTENDED); } if (FluidSystem::phaseIsActive(waterPhaseIdx) && ! this->residual_[waterPhaseIdx].empty()) { sol.insert("RES_WAT", UnitSystem::measure::liquid_surface_volume, std::move(this->residual_[waterPhaseIdx]), data::TargetType::RESTART_OPM_EXTENDED); } if (FluidSystem::phaseIsActive(gasPhaseIdx) && ! this->residual_[gasPhaseIdx].empty()) { sol.insert("RES_GAS", UnitSystem::measure::gas_surface_volume, std::move(this->residual_[gasPhaseIdx]), data::TargetType::RESTART_OPM_EXTENDED); } if (FluidSystem::phaseIsActive(oilPhaseIdx) && ! this->residual_[oilPhaseIdx].empty()) { sol.insert("RES_OIL", UnitSystem::measure::liquid_surface_volume, std::move(this->residual_[oilPhaseIdx]), data::TargetType::RESTART_OPM_EXTENDED); } // Fluid in place if (this->outputFipRestart_) { using namespace std::string_literals; using M = UnitSystem::measure; using FIPEntry = std::tuple; auto fipArrays = std::vector {}; if (this->outputFipRestart_.surface) { fipArrays.insert(fipArrays.end(), { FIPEntry {"SFIPOIL"s, M::liquid_surface_volume, Inplace::Phase::OIL }, FIPEntry {"SFIPWAT"s, M::liquid_surface_volume, Inplace::Phase::WATER }, FIPEntry {"SFIPGAS"s, M::gas_surface_volume, Inplace::Phase::GAS }, }); } if (this->outputFipRestart_.reservoir) { fipArrays.insert(fipArrays.end(), { FIPEntry {"RFIPOIL"s, M::volume, Inplace::Phase::OilResVolume }, FIPEntry {"RFIPWAT"s, M::volume, Inplace::Phase::WaterResVolume }, FIPEntry {"RFIPGAS"s, M::volume, Inplace::Phase::GasResVolume }, }); } if (this->outputFipRestart_.noPrefix && !this->outputFipRestart_.surface) { fipArrays.insert(fipArrays.end(), { FIPEntry { "FIPOIL"s, M::liquid_surface_volume, Inplace::Phase::OIL }, FIPEntry { "FIPWAT"s, M::liquid_surface_volume, Inplace::Phase::WATER }, FIPEntry { "FIPGAS"s, M::gas_surface_volume, Inplace::Phase::GAS }, }); } for (const auto& [mnemonic, unit, phase] : fipArrays) { if (! this->fip_[phase].empty()) { sol.insert(mnemonic, unit, std::move(this->fip_[phase]), data::TargetType::RESTART_SOLUTION); } } for (const auto& phase : Inplace::mixingPhases()) { if (! this->fip_[phase].empty()) { sol.insert(EclString(phase), UnitSystem::measure::volume, this->fip_[phase], data::TargetType::SUMMARY); } } } // Tracers if (! this->freeTracerConcentrations_.empty()) { const auto& tracers = this->eclState_.tracer(); for (auto tracerIdx = 0*tracers.size(); tracerIdx < tracers.size(); ++tracerIdx) { sol.insert(tracers[tracerIdx].fname(), UnitSystem::measure::identity, std::move(freeTracerConcentrations_[tracerIdx]), data::TargetType::RESTART_TRACER_SOLUTION); } // Put freeTracerConcentrations container into a valid state. Otherwise // we'll move from vectors that have already been moved from if we // get here and it's not a restart step. this->freeTracerConcentrations_.clear(); } if (! this->solTracerConcentrations_.empty()) { const auto& tracers = this->eclState_.tracer(); for (auto tracerIdx = 0*tracers.size(); tracerIdx < tracers.size(); ++tracerIdx) { if (solTracerConcentrations_[tracerIdx].empty()) continue; sol.insert(tracers[tracerIdx].sname(), UnitSystem::measure::identity, std::move(solTracerConcentrations_[tracerIdx]), data::TargetType::RESTART_TRACER_SOLUTION); } // Put solTracerConcentrations container into a valid state. Otherwise // we'll move from vectors that have already been moved from if we // get here and it's not a restart step. this->solTracerConcentrations_.clear(); } } template void GenericOutputBlackoilModule:: setRestart(const data::Solution& sol, unsigned elemIdx, unsigned globalDofIndex) { Scalar so = 1.0; if (!saturation_[waterPhaseIdx].empty() && sol.has("SWAT")) { saturation_[waterPhaseIdx][elemIdx] = sol.data("SWAT")[globalDofIndex]; so -= sol.data("SWAT")[globalDofIndex]; } if (!saturation_[gasPhaseIdx].empty() && sol.has("SGAS")) { saturation_[gasPhaseIdx][elemIdx] = sol.data("SGAS")[globalDofIndex]; so -= sol.data("SGAS")[globalDofIndex]; } if (!sSol_.empty()) { // keep the SSOL option for backward compatibility // should be removed after 10.2018 release if (sol.has("SSOL")) sSol_[elemIdx] = sol.data("SSOL")[globalDofIndex]; else if (sol.has("SSOLVENT")) sSol_[elemIdx] = sol.data("SSOLVENT")[globalDofIndex]; so -= sSol_[elemIdx]; } if (!rswSol_.empty()) { if (sol.has("RSWSOL")) rswSol_[elemIdx] = sol.data("RSWSOL")[globalDofIndex]; } if (!saturation_[oilPhaseIdx].empty()) { saturation_[oilPhaseIdx][elemIdx] = so; } auto assign = [elemIdx, globalDofIndex, &sol](const std::string& name, ScalarBuffer& data) { if (!data.empty() && sol.has(name)) { data[elemIdx] = sol.data(name)[globalDofIndex]; } }; const auto fields = std::array{ std::pair{"BIOFILM", &cBiofilm_}, std::pair{"CALCITE", &cCalcite_}, std::pair{"FOAM", &cFoam_}, std::pair{"MICROBES", &cMicrobes_}, std::pair{"OXYGEN", &cOxygen_}, std::pair{"PERMFACT", &permFact_}, std::pair{"POLYMER", &cPolymer_}, std::pair{"PPCW", &ppcw_}, std::pair{"PRESSURE", &fluidPressure_}, std::pair{"RS", &rs_}, std::pair{"RSW", &rsw_}, std::pair{"RV", &rv_}, std::pair{"RVW", &rvw_}, std::pair{"SALT", &cSalt_}, std::pair{"SALTP", &pSalt_}, std::pair{"SGMAX", &sgmax_}, std::pair{"SHMAX", &shmax_}, std::pair{"SOMAX", &soMax_}, std::pair{"SOMIN", &somin_}, std::pair{"SWHY1", &swmin_}, std::pair{"SWMAX", &swMax_}, std::pair{"TEMP", &temperature_}, std::pair{"UREA", &cUrea_}, }; std::for_each(fields.begin(), fields.end(), [&assign](const auto& p) { assign(p.first, *p.second); }); } template typename GenericOutputBlackoilModule::ScalarBuffer GenericOutputBlackoilModule:: regionSum(const ScalarBuffer& property, const std::vector& regionId, std::size_t maxNumberOfRegions, const Parallel::Communication& comm) { ScalarBuffer totals(maxNumberOfRegions, 0.0); if (property.empty()) return totals; // the regionId contains the ghost cells // the property does not contain the ghostcells // This code assumes that that the ghostcells are // added after the interior cells // OwnerCellsFirst = True assert(regionId.size() >= property.size()); for (std::size_t j = 0; j < property.size(); ++j) { const int regionIdx = regionId[j] - 1; // the cell is not attributed to any region. ignore it! if (regionIdx < 0) continue; assert(regionIdx < static_cast(maxNumberOfRegions)); totals[regionIdx] += property[j]; } for (std::size_t i = 0; i < maxNumberOfRegions; ++i) totals[i] = comm.sum(totals[i]); return totals; } template void GenericOutputBlackoilModule:: doAllocBuffers(const unsigned bufferSize, const unsigned reportStepNum, const bool substep, const bool log, const bool isRestart, const bool vapparsActive, const bool enablePCHysteresis, const bool enableNonWettingHysteresis, const bool enableWettingHysteresis, const unsigned numTracers, const std::vector& enableSolTracers, const unsigned numOutputNnc) { // Output RESTART_OPM_EXTENDED only when explicitly requested by user. std::map rstKeywords = schedule_.rst_keywords(reportStepNum); for (auto& [keyword, should_write] : rstKeywords) { if (this->isOutputCreationDirective_(keyword)) { // 'BASIC', 'FREQ' and similar. Don't attempt to create // cell-based output for these keywords and don't warn about // not being able to create such cell-based result vectors. should_write = 0; } } if (auto& norst = rstKeywords["NORST"]; norst > 0) { // Don't emit diagnostic messages about unsupported 'NORST' key. norst = 0; } // Fluid in place { using namespace std::string_literals; const auto fipctrl = std::array { std::pair { "FIP"s , &OutputFIPRestart::noPrefix }, std::pair { "SFIP"s, &OutputFIPRestart::surface }, std::pair { "RFIP"s, &OutputFIPRestart::reservoir }, }; this->outputFipRestart_.clearBits(); this->computeFip_ = false; for (const auto& [mnemonic, kind] : fipctrl) { if (auto fipPos = rstKeywords.find(mnemonic); fipPos != rstKeywords.end()) { fipPos->second = 0; this->outputFipRestart_.*kind = true; } } for (const auto& phase : Inplace::phases()) { if (!substep || summaryConfig_.require3DField(EclString(phase))) { this->fip_[phase].resize(bufferSize, 0.0); this->computeFip_ = true; } else { this->fip_[phase].clear(); } } } const auto needAvgPress = !substep || !this->RPRNodes_.empty() || this->summaryConfig_.hasKeyword("FPR") || this->summaryConfig_.hasKeyword("FPRP"); const auto needPoreVolume = needAvgPress || this->summaryConfig_.hasKeyword("FHPV") || this->summaryConfig_.match("RHPV*"); if (needPoreVolume) { this->fip_[Inplace::Phase::PoreVolume].resize(bufferSize, 0.0); this->dynamicPoreVolume_.resize(bufferSize, 0.0); this->hydrocarbonPoreVolume_.resize(bufferSize, 0.0); } else { this->dynamicPoreVolume_.clear(); this->hydrocarbonPoreVolume_.clear(); } if (needAvgPress) { this->pressureTimesPoreVolume_.resize(bufferSize, 0.0); this->pressureTimesHydrocarbonVolume_.resize(bufferSize, 0.0); } else { this->pressureTimesPoreVolume_.clear(); this->pressureTimesHydrocarbonVolume_.clear(); } // Well RFT data if (!substep) { const auto& rft_config = schedule_[reportStepNum].rft_config(); for (const auto& well: schedule_.getWells(reportStepNum)) { // don't bother with wells not on this process if (isDefunctParallelWell(well.name())) { continue; } if (!rft_config.active()) continue; for (const auto& connection: well.getConnections()) { const std::size_t i = std::size_t(connection.getI()); const std::size_t j = std::size_t(connection.getJ()); const std::size_t k = std::size_t(connection.getK()); const std::size_t index = eclState_.gridDims().getGlobalIndex(i, j, k); if (FluidSystem::phaseIsActive(oilPhaseIdx)) oilConnectionPressures_.emplace(std::make_pair(index, 0.0)); if (FluidSystem::phaseIsActive(waterPhaseIdx)) waterConnectionSaturations_.emplace(std::make_pair(index, 0.0)); if (FluidSystem::phaseIsActive(gasPhaseIdx)) gasConnectionSaturations_.emplace(std::make_pair(index, 0.0)); } } } // Flows may need to be allocated even when there is no restart due to BFLOW* summary keywords if (blockFlows_ ) { const std::array phaseIdxs = { gasPhaseIdx, oilPhaseIdx, waterPhaseIdx }; const std::array compIdxs = { gasCompIdx, oilCompIdx, waterCompIdx }; for (unsigned ii = 0; ii < phaseIdxs.size(); ++ii) { if (FluidSystem::phaseIsActive(phaseIdxs[ii])) { flows_[FaceDir::ToIntersectionIndex(Dir::XPlus)][compIdxs[ii]].resize(bufferSize, 0.0); flows_[FaceDir::ToIntersectionIndex(Dir::YPlus)][compIdxs[ii]].resize(bufferSize, 0.0); flows_[FaceDir::ToIntersectionIndex(Dir::ZPlus)][compIdxs[ii]].resize(bufferSize, 0.0); } } } // Field data should be allocated // 1) When we want to restart // 2) When it is ask for by the user via restartConfig // 3) When it is not a substep if (!isRestart && (!schedule_.write_rst_file(reportStepNum) || substep)) { return; } // Always output saturation of active phases for (unsigned phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx) { if (! FluidSystem::phaseIsActive(phaseIdx)) { continue; } this->saturation_[phaseIdx].resize(bufferSize, 0.0); } // And oil pressure fluidPressure_.resize(bufferSize, 0.0); rstKeywords["PRES"] = 0; rstKeywords["PRESSURE"] = 0; if (enableMech_ && eclState_.runspec().mech()) { this->mechPotentialForce_.resize(bufferSize,0.0); rstKeywords["MECHPOTF"] = 0; this->mechPotentialTempForce_.resize(bufferSize,0.0); rstKeywords["TEMPPOTF"] = 0; this->mechPotentialPressForce_.resize(bufferSize,0.0); rstKeywords["PRESPOTF"] = 0; this->dispX_.resize(bufferSize,0.0); rstKeywords["DISPX"] = 0; this->dispY_.resize(bufferSize,0.0); rstKeywords["DISPY"] = 0; this->dispZ_.resize(bufferSize,0.0); rstKeywords["DISPZ"] = 0; this->stressXX_.resize(bufferSize,0.0); rstKeywords["STRESSXX"] = 0; this->stressYY_.resize(bufferSize,0.0); rstKeywords["STRESSYY"] = 0; this->stressZZ_.resize(bufferSize,0.0); rstKeywords["STRESSZZ"] = 0; this->stressXY_.resize(bufferSize,0.0); rstKeywords["STRESSXY"] = 0; this->stressXZ_.resize(bufferSize,0.0); rstKeywords["STRESSXZ"] = 0; this->stressXY_.resize(bufferSize,0.0); rstKeywords["STRESSXY"] = 0; this->stressYZ_.resize(bufferSize,0.0); rstKeywords["STRESSYZ"] = 0; this->strainXX_.resize(bufferSize,0.0); rstKeywords["STRAINXX"] = 0; this->strainYY_.resize(bufferSize,0.0); rstKeywords["STRAINYY"] = 0; this->strainZZ_.resize(bufferSize,0.0); rstKeywords["STRAINZZ"] = 0; this->strainXY_.resize(bufferSize,0.0); rstKeywords["STRAINXY"] = 0; this->strainXZ_.resize(bufferSize,0.0); rstKeywords["STRAINXZ"] = 0; this->strainXY_.resize(bufferSize,0.0); rstKeywords["STRAINXY"] = 0; this->strainYZ_.resize(bufferSize,0.0); rstKeywords["STRAINYZ"] = 0; this->delstressXX_.resize(bufferSize,0.0); rstKeywords["DELSTRXX"] = 0; this->delstressYY_.resize(bufferSize,0.0); rstKeywords["DELSTRYY"] = 0; this->delstressZZ_.resize(bufferSize,0.0); rstKeywords["DELSTRZZ"] = 0; this->delstressXY_.resize(bufferSize,0.0); rstKeywords["DELSTRXY"] = 0; this->delstressXZ_.resize(bufferSize,0.0); rstKeywords["DELSTRXZ"] = 0; this->delstressXY_.resize(bufferSize,0.0); rstKeywords["DELSTRXY"] = 0; this->delstressYZ_.resize(bufferSize,0.0); rstKeywords["DELSTRYZ"] = 0; } // If TEMP is set in RPTRST we output temperature even if THERMAL // is not activated if (enableEnergy_ || rstKeywords["TEMP"] > 0) { this->temperature_.resize(bufferSize, 0.0); rstKeywords["TEMP"] = 0; } if (FluidSystem::phaseIsActive(oilPhaseIdx)) { rstKeywords["SOIL"] = 0; } if (FluidSystem::phaseIsActive(gasPhaseIdx)) { rstKeywords["SGAS"] = 0; } if (FluidSystem::phaseIsActive(waterPhaseIdx)) { rstKeywords["SWAT"] = 0; } if (FluidSystem::enableDissolvedGas()) { rs_.resize(bufferSize, 0.0); rstKeywords["RS"] = 0; } if (FluidSystem::enableDissolvedGasInWater()) { rsw_.resize(bufferSize, 0.0); rstKeywords["RSW"] = 0; } if (FluidSystem::enableVaporizedOil()) { rv_.resize(bufferSize, 0.0); rstKeywords["RV"] = 0; } if (FluidSystem::enableVaporizedWater()) { rvw_.resize(bufferSize, 0.0); rstKeywords["RVW"] = 0; } if (schedule_[reportStepNum].oilvap().drsdtConvective()) { drsdtcon_.resize(bufferSize, 0.0); } if (enableSolvent_) { sSol_.resize(bufferSize, 0.0); if (eclState_.getSimulationConfig().hasDISGASW()) { rswSol_.resize(bufferSize, 0.0); } } if (enablePolymer_) { cPolymer_.resize(bufferSize, 0.0); } if (enableFoam_) { cFoam_.resize(bufferSize, 0.0); } if (enableBrine_) { cSalt_.resize(bufferSize, 0.0); } if (enableSaltPrecipitation_) { pSalt_.resize(bufferSize, 0.0); permFact_.resize(bufferSize, 0.0); } if (enableExtbo_) { extboX_.resize(bufferSize, 0.0); extboY_.resize(bufferSize, 0.0); extboZ_.resize(bufferSize, 0.0); mFracOil_.resize(bufferSize, 0.0); mFracGas_.resize(bufferSize, 0.0); mFracCo2_.resize(bufferSize, 0.0); } if (enableMICP_) { cMicrobes_.resize(bufferSize, 0.0); cOxygen_.resize(bufferSize, 0.0); cUrea_.resize(bufferSize, 0.0); cBiofilm_.resize(bufferSize, 0.0); cCalcite_.resize(bufferSize, 0.0); } if (vapparsActive) { soMax_.resize(bufferSize, 0.0); } if (enableNonWettingHysteresis) { if (FluidSystem::phaseIsActive(oilPhaseIdx)){ if (FluidSystem::phaseIsActive(waterPhaseIdx)){ soMax_.resize(bufferSize, 0.0); } if (FluidSystem::phaseIsActive(gasPhaseIdx)){ sgmax_.resize(bufferSize, 0.0); } } else { //TODO add support for gas-water } } if (enableWettingHysteresis) { if (FluidSystem::phaseIsActive(oilPhaseIdx)){ if (FluidSystem::phaseIsActive(waterPhaseIdx)){ swMax_.resize(bufferSize, 0.0); } if (FluidSystem::phaseIsActive(gasPhaseIdx)){ shmax_.resize(bufferSize, 0.0); } } else { //TODO add support for gas-water } } if (enablePCHysteresis) { if (FluidSystem::phaseIsActive(oilPhaseIdx)){ if (FluidSystem::phaseIsActive(waterPhaseIdx)){ swmin_.resize(bufferSize, 0.0); } if (FluidSystem::phaseIsActive(gasPhaseIdx)){ somin_.resize(bufferSize, 0.0); } } else { //TODO add support for gas-water } } if (eclState_.fieldProps().has_double("SWATINIT")) { ppcw_.resize(bufferSize, 0.0); rstKeywords["PPCW"] = 0; } if (FluidSystem::enableDissolvedGas() && rstKeywords["RSSAT"] > 0) { rstKeywords["RSSAT"] = 0; gasDissolutionFactor_.resize(bufferSize, 0.0); } if (FluidSystem::enableVaporizedOil() && rstKeywords["RVSAT"] > 0) { rstKeywords["RVSAT"] = 0; oilVaporizationFactor_.resize(bufferSize, 0.0); } if (FluidSystem::enableDissolvedGasInWater() && rstKeywords["RSWSAT"] > 0) { rstKeywords["RSWSAT"] = 0; gasDissolutionFactorInWater_.resize(bufferSize, 0.0); } if (FluidSystem::enableVaporizedWater() && rstKeywords["RVWSAT"] > 0) { rstKeywords["RVWSAT"] = 0; waterVaporizationFactor_.resize(bufferSize, 0.0); } if (FluidSystem::phaseIsActive(waterPhaseIdx) && rstKeywords["BW"] > 0) { rstKeywords["BW"] = 0; invB_[waterPhaseIdx].resize(bufferSize, 0.0); } if (FluidSystem::phaseIsActive(oilPhaseIdx) && rstKeywords["BO"] > 0) { rstKeywords["BO"] = 0; invB_[oilPhaseIdx].resize(bufferSize, 0.0); } if (FluidSystem::phaseIsActive(gasPhaseIdx) && rstKeywords["BG"] > 0) { rstKeywords["BG"] = 0; invB_[gasPhaseIdx].resize(bufferSize, 0.0); } if (rstKeywords["RPORV"] > 0) { rstKeywords["RPORV"] = 0; rPorV_.resize(bufferSize, 0.0); } enableFlows_ = false; enableFlowsn_ = false; const bool rstFlows = (rstKeywords["FLOWS"] > 0); if (rstFlows) { rstKeywords["FLOWS"] = 0; enableFlows_ = true; const std::array phaseIdxs = { gasPhaseIdx, oilPhaseIdx, waterPhaseIdx }; const std::array compIdxs = { gasCompIdx, oilCompIdx, waterCompIdx }; const auto rstName = std::array { "FLOGASN+", "FLOOILN+", "FLOWATN+" }; for (unsigned ii = 0; ii < phaseIdxs.size(); ++ii) { if (FluidSystem::phaseIsActive(phaseIdxs[ii])) { if (!blockFlows_) { // Already allocated if summary vectors requested flows_[FaceDir::ToIntersectionIndex(Dir::XPlus)][compIdxs[ii]].resize(bufferSize, 0.0); flows_[FaceDir::ToIntersectionIndex(Dir::YPlus)][compIdxs[ii]].resize(bufferSize, 0.0); flows_[FaceDir::ToIntersectionIndex(Dir::ZPlus)][compIdxs[ii]].resize(bufferSize, 0.0); } if (rstKeywords["FLOWS-"] > 0) { flows_[FaceDir::ToIntersectionIndex(Dir::XMinus)][compIdxs[ii]].resize(bufferSize, 0.0); flows_[FaceDir::ToIntersectionIndex(Dir::YMinus)][compIdxs[ii]].resize(bufferSize, 0.0); flows_[FaceDir::ToIntersectionIndex(Dir::ZMinus)][compIdxs[ii]].resize(bufferSize, 0.0); } if (numOutputNnc > 0) { enableFlowsn_ = true; flowsn_[compIdxs[ii]].name = rstName[ii]; flowsn_[compIdxs[ii]].indices.resize(numOutputNnc, -1); flowsn_[compIdxs[ii]].values.resize(numOutputNnc, 0.0); } } } if (rstKeywords["FLOWS-"] > 0) { rstKeywords["FLOWS-"] = 0; } } enableFlores_ = false; enableFloresn_ = false; if (rstKeywords["FLORES"] > 0) { rstKeywords["FLORES"] = 0; enableFlores_ = true; const std::array phaseIdxs = { gasPhaseIdx, oilPhaseIdx, waterPhaseIdx }; const std::array compIdxs = { gasCompIdx, oilCompIdx, waterCompIdx }; const auto rstName = std::array{ "FLRGASN+", "FLROILN+", "FLRWATN+" }; for (unsigned ii = 0; ii < phaseIdxs.size(); ++ii) { if (FluidSystem::phaseIsActive(phaseIdxs[ii])) { flores_[FaceDir::ToIntersectionIndex(Dir::XPlus)][compIdxs[ii]].resize(bufferSize, 0.0); flores_[FaceDir::ToIntersectionIndex(Dir::YPlus)][compIdxs[ii]].resize(bufferSize, 0.0); flores_[FaceDir::ToIntersectionIndex(Dir::ZPlus)][compIdxs[ii]].resize(bufferSize, 0.0); if (rstKeywords["FLORES-"] > 0) { flores_[FaceDir::ToIntersectionIndex(Dir::XMinus)][compIdxs[ii]].resize(bufferSize, 0.0); flores_[FaceDir::ToIntersectionIndex(Dir::YMinus)][compIdxs[ii]].resize(bufferSize, 0.0); flores_[FaceDir::ToIntersectionIndex(Dir::ZMinus)][compIdxs[ii]].resize(bufferSize, 0.0); } if (numOutputNnc > 0) { enableFloresn_ = true; floresn_[compIdxs[ii]].name = rstName[ii]; floresn_[compIdxs[ii]].indices.resize(numOutputNnc, -1); floresn_[compIdxs[ii]].values.resize(numOutputNnc, 0.0); } } } if (rstKeywords["FLORES-"] > 0) { rstKeywords["FLORES-"] = 0; } } if (auto& den = rstKeywords["DEN"]; den > 0) { den = 0; for (unsigned phaseIdx = 0; phaseIdx < numPhases; ++ phaseIdx) { if (!FluidSystem::phaseIsActive(phaseIdx)) { continue; } this->density_[phaseIdx].resize(bufferSize, 0.0); } } if (auto& deng = rstKeywords["DENG"]; (deng > 0) && FluidSystem::phaseIsActive(gasPhaseIdx)) { deng = 0; this->density_[gasPhaseIdx].resize(bufferSize, 0.0); } if (auto& deno = rstKeywords["DENO"]; (deno > 0) && FluidSystem::phaseIsActive(oilPhaseIdx)) { deno = 0; this->density_[oilPhaseIdx].resize(bufferSize, 0.0); } if (auto& denw = rstKeywords["DENW"]; (denw > 0) && FluidSystem::phaseIsActive(waterPhaseIdx)) { denw = 0; this->density_[waterPhaseIdx].resize(bufferSize, 0.0); } const bool hasVWAT = (rstKeywords["VISC"] > 0) || (rstKeywords["VWAT"] > 0); const bool hasVOIL = (rstKeywords["VISC"] > 0) || (rstKeywords["VOIL"] > 0); const bool hasVGAS = (rstKeywords["VISC"] > 0) || (rstKeywords["VGAS"] > 0); rstKeywords["VISC"] = 0; if (FluidSystem::phaseIsActive(waterPhaseIdx) && hasVWAT) { rstKeywords["VWAT"] = 0; viscosity_[waterPhaseIdx].resize(bufferSize, 0.0); } if (FluidSystem::phaseIsActive(oilPhaseIdx) && hasVOIL > 0) { rstKeywords["VOIL"] = 0; viscosity_[oilPhaseIdx].resize(bufferSize, 0.0); } if (FluidSystem::phaseIsActive(gasPhaseIdx) && hasVGAS > 0) { rstKeywords["VGAS"] = 0; viscosity_[gasPhaseIdx].resize(bufferSize, 0.0); } if (FluidSystem::phaseIsActive(waterPhaseIdx) && rstKeywords["KRW"] > 0) { rstKeywords["KRW"] = 0; relativePermeability_[waterPhaseIdx].resize(bufferSize, 0.0); } if (FluidSystem::phaseIsActive(oilPhaseIdx) && rstKeywords["KRO"] > 0) { rstKeywords["KRO"] = 0; relativePermeability_[oilPhaseIdx].resize(bufferSize, 0.0); } if (FluidSystem::phaseIsActive(gasPhaseIdx) && rstKeywords["KRG"] > 0) { rstKeywords["KRG"] = 0; relativePermeability_[gasPhaseIdx].resize(bufferSize, 0.0); } if (FluidSystem::phaseIsActive(gasPhaseIdx) && FluidSystem::phaseIsActive(waterPhaseIdx) && rstKeywords["PCGW"] > 0) { rstKeywords["PCGW"] = 0; pcgw_.resize(bufferSize, 0.0); } if (FluidSystem::phaseIsActive(oilPhaseIdx) && FluidSystem::phaseIsActive(waterPhaseIdx) && rstKeywords["PCOW"] > 0) { rstKeywords["PCOW"] = 0; pcow_.resize(bufferSize, 0.0); } if (FluidSystem::phaseIsActive(oilPhaseIdx) && FluidSystem::phaseIsActive(gasPhaseIdx) && rstKeywords["PCOG"] > 0) { rstKeywords["PCOG"] = 0; pcog_.resize(bufferSize, 0.0); } if (rstKeywords["PBPD"] > 0) { rstKeywords["PBPD"] = 0; bubblePointPressure_.resize(bufferSize, 0.0); dewPointPressure_.resize(bufferSize, 0.0); } // tracers if (numTracers > 0) { freeTracerConcentrations_.resize(numTracers); for (unsigned tracerIdx = 0; tracerIdx < numTracers; ++tracerIdx) { freeTracerConcentrations_[tracerIdx].resize(bufferSize, 0.0); } solTracerConcentrations_.resize(numTracers); for (unsigned tracerIdx = 0; tracerIdx < numTracers; ++tracerIdx) { if (enableSolTracers[tracerIdx]) solTracerConcentrations_[tracerIdx].resize(bufferSize, 0.0); } } if (rstKeywords["RESIDUAL"] > 0) { rstKeywords["RESIDUAL"] = 0; for (int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx) { if (FluidSystem::phaseIsActive(phaseIdx)) { this->residual_[phaseIdx].resize(bufferSize, 0.0); } } } // ROCKC if (rstKeywords["ROCKC"] > 0) { rstKeywords["ROCKC"] = 0; rockCompPorvMultiplier_.resize(bufferSize, 0.0); rockCompTransMultiplier_.resize(bufferSize, 0.0); swMax_.resize(bufferSize, 0.0); minimumOilPressure_.resize(bufferSize, 0.0); overburdenPressure_.resize(bufferSize, 0.0); } if (this->isCompositional_) { if (rstKeywords["ZMF"] > 0) { rstKeywords["ZMF"] = 0; for (int i = 0; i < numComponents; ++i) { moleFractions_[i].resize(bufferSize, 0.0); } } if (rstKeywords["XMF"] > 0 && FluidSystem::phaseIsActive(oilPhaseIdx)) { rstKeywords["XMF"] = 0; for (int i = 0; i < numComponents; ++i) { phaseMoleFractions_[oilPhaseIdx][i].resize(bufferSize, 0.0); } } if (rstKeywords["YMF"] > 0 && FluidSystem::phaseIsActive(gasPhaseIdx)) { rstKeywords["YMF"] = 0; for (int i = 0; i < numComponents; ++i) { phaseMoleFractions_[gasPhaseIdx][i].resize(bufferSize, 0.0); } } } //Warn for any unhandled keyword if (log) { for (auto& keyValue: rstKeywords) { if (keyValue.second > 0) { std::string logstring = "Keyword '"; logstring.append(keyValue.first); logstring.append("' is unhandled for output to restart file."); OpmLog::warning("Unhandled output keyword", logstring); } } } failedCellsPb_.clear(); failedCellsPd_.clear(); // Not supported in flow legacy if (false) { saturatedOilFormationVolumeFactor_.resize(bufferSize, 0.0); } if (false) { oilSaturationPressure_.resize(bufferSize, 0.0); } } template bool GenericOutputBlackoilModule:: isOutputCreationDirective_(const std::string& keyword) { return (keyword == "BASIC") || (keyword == "FREQ") || (keyword == "RESTART") // From RPTSCHED || (keyword == "SAVE") || (keyword == "SFREQ"); // Not really supported } template void GenericOutputBlackoilModule:: outputErrorLog(const Parallel::Communication& comm) const { const auto root = 0; auto globalFailedCellsPbub = gatherv(this->failedCellsPb_, comm, root); auto globalFailedCellsPdew = gatherv(this->failedCellsPd_, comm, root); if (std::empty(std::get<0>(globalFailedCellsPbub)) && std::empty(std::get<0>(globalFailedCellsPdew))) { return; } logOutput_.error(std::get<0>(globalFailedCellsPbub), std::get<0>(globalFailedCellsPdew)); } template int GenericOutputBlackoilModule:: regionMax(const std::vector& region, const Parallel::Communication& comm) { const auto max_value = region.empty() ? 0 : *std::max_element(region.begin(), region.end()); return comm.max(max_value); } template void GenericOutputBlackoilModule:: update(Inplace& inplace, const std::string& region_name, const Inplace::Phase phase, const std::size_t ntFip, const ScalarBuffer& values) { double sum = 0.0; for (std::size_t region_number = 0; region_number < ntFip; ++region_number) { const auto rval = static_cast(values[region_number]); inplace.add(region_name, phase, region_number + 1, rval); sum += rval; } inplace.add(phase, sum); } template void GenericOutputBlackoilModule:: makeRegionSum(Inplace& inplace, const std::string& region_name, const Parallel::Communication& comm) const { const auto& region = this->regions_.at(region_name); const std::size_t ntFip = this->regionMax(region, comm); auto update_inplace = [&inplace, ®ion, ®ion_name, &comm, ntFip, this] (const Inplace::Phase phase, const std::vector& value) { update(inplace, region_name, phase, ntFip, this->regionSum(value, region, ntFip, comm)); }; update_inplace(Inplace::Phase::PressurePV, this->pressureTimesPoreVolume_); update_inplace(Inplace::Phase::HydroCarbonPV, this->hydrocarbonPoreVolume_); update_inplace(Inplace::Phase::PressureHydroCarbonPV, this->pressureTimesHydrocarbonVolume_); update_inplace(Inplace::Phase::DynamicPoreVolume, this->dynamicPoreVolume_); for (const auto& phase : Inplace::phases()) { auto fipPos = this->fip_.find(phase); if (fipPos != this->fip_.end()) { update_inplace(phase, fipPos->second); } } } template Inplace GenericOutputBlackoilModule:: accumulateRegionSums(const Parallel::Communication& comm) { Inplace inplace; for (const auto& region : this->regions_) { makeRegionSum(inplace, region.first, comm); } // The first time the outputFipLog function is run we store the inplace values in // the initialInplace_ member. This has a problem: // // o For restarted runs this is obviously wrong. // // Finally it is of course not desirable to mutate state in an output // routine. if (!this->initialInplace_.has_value()) this->initialInplace_ = inplace; return inplace; } template typename GenericOutputBlackoilModule::Scalar GenericOutputBlackoilModule:: sum(const ScalarBuffer& v) { return std::accumulate(v.begin(), v.end(), Scalar{0}); } template void GenericOutputBlackoilModule:: updateSummaryRegionValues(const Inplace& inplace, std::map& miscSummaryData, std::map>& regionData) const { // The field summary vectors should only use the FIPNUM based region sum. { for (const auto& phase : Inplace::phases()) { const std::string key = "F" + EclString(phase); if (this->summaryConfig_.hasKeyword(key)) { miscSummaryData[key] = inplace.get(phase); } } if (this->summaryConfig_.hasKeyword("FHPV")) { miscSummaryData["FHPV"] = inplace.get(Inplace::Phase::HydroCarbonPV); } if (this->summaryConfig_.hasKeyword("FOE") && this->initialInplace_) { miscSummaryData["FOE"] = (this->initialInplace_.value().get(Inplace::Phase::OIL) - inplace.get(Inplace::Phase::OIL)) / this->initialInplace_.value().get(Inplace::Phase::OIL); } if (this->summaryConfig_.hasKeyword("FPR")) { miscSummaryData["FPR"] = detail::pressureAverage(inplace.get(Inplace::Phase::PressureHydroCarbonPV), inplace.get(Inplace::Phase::HydroCarbonPV), inplace.get(Inplace::Phase::PressurePV), inplace.get(Inplace::Phase::DynamicPoreVolume), true); } if (this->summaryConfig_.hasKeyword("FPRP")) { miscSummaryData["FPRP"] = detail::pressureAverage(inplace.get(Inplace::Phase::PressureHydroCarbonPV), inplace.get(Inplace::Phase::HydroCarbonPV), inplace.get(Inplace::Phase::PressurePV), inplace.get(Inplace::Phase::DynamicPoreVolume), false); } } // The region summary vectors should loop through the FIPxxx regions to // support the RPR__xxx summary keywords. { auto get_vector = [&inplace] (const auto& node_, const Inplace::Phase phase_) { return inplace.get_vector(node_.fip_region(), phase_); }; for (const auto& phase : Inplace::phases()) { for (const auto& node : this->regionNodes_.at(phase)) regionData[node.keyword()] = get_vector(node, phase); } for (const auto& node : this->RPRNodes_) { regionData[node.keyword()] = detail::pressureAverage(get_vector(node, Inplace::Phase::PressureHydroCarbonPV), get_vector(node, Inplace::Phase::HydroCarbonPV), get_vector(node, Inplace::Phase::PressurePV), get_vector(node, Inplace::Phase::DynamicPoreVolume), true); } for (const auto& node : this->RPRPNodes_) { regionData[node.keyword()] = detail::pressureAverage(get_vector(node, Inplace::Phase::PressureHydroCarbonPV), get_vector(node, Inplace::Phase::HydroCarbonPV), get_vector(node, Inplace::Phase::PressurePV), get_vector(node, Inplace::Phase::DynamicPoreVolume), false); } for (const auto& node : this->summaryConfig_.keywords("RHPV*")) { regionData[node.keyword()] = get_vector(node, Inplace::Phase::HydroCarbonPV); } } } template void GenericOutputBlackoilModule:: setupBlockData(std::function isCartIdxOnThisRank) { for (const auto& node : summaryConfig_) { if ((node.category() == SummaryConfigNode::Category::Block) && isCartIdxOnThisRank(node.number() - 1)) { this->blockData_.emplace(std::piecewise_construct, std::forward_as_tuple(node.keyword(), node.number()), std::forward_as_tuple(0.0)); } } } template void GenericOutputBlackoilModule:: assignGlobalFieldsToSolution(data::Solution& sol) { if (!this->cnvData_.empty()) { constexpr const std::array names{"CNV_OIL", "CNV_GAS", "CNV_WAT", "CNV_PLY", "CNV_SAL", "CNV_SOL"}; for (std::size_t i = 0; i < names.size(); ++i) { if (!this->cnvData_[i].empty()) { sol.insert(names[i], this->cnvData_[i], data::TargetType::RESTART_SOLUTION); } } } } template using FS = BlackOilFluidSystem; #define INSTANTIATE_TYPE(T) \ template class GenericOutputBlackoilModule>; INSTANTIATE_TYPE(double) #if FLOW_INSTANTIATE_FLOAT INSTANTIATE_TYPE(float) #endif #define INSTANTIATE_COMP(NUM) \ template using FS##NUM = GenericOilGasFluidSystem; \ template class GenericOutputBlackoilModule>; INSTANTIATE_COMP(2) INSTANTIATE_COMP(3) INSTANTIATE_COMP(4) INSTANTIATE_COMP(5) INSTANTIATE_COMP(6) INSTANTIATE_COMP(7) } // namespace Opm