// -*- 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 namespace Opm { template void MICPContainer:: allocate(const unsigned bufferSize) { 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); allocated_ = true; } template void MICPContainer:: assign(const unsigned globalDofIdx, const Scalar microbialConcentration, const Scalar oxygenConcentration, const Scalar ureaConcentration, const Scalar biofilmConcentration, const Scalar calciteConcentration) { cMicrobes_[globalDofIdx] = microbialConcentration; cOxygen_[globalDofIdx] = oxygenConcentration; cUrea_[globalDofIdx] = ureaConcentration; cBiofilm_[globalDofIdx] = biofilmConcentration; cCalcite_[globalDofIdx] = calciteConcentration; } template void MICPContainer:: outputRestart(data::Solution& sol) { if (!this->allocated_) { return; } using DataEntry = std::tuple&>; auto solutionVectors = std::array { DataEntry{"BIOFILM", UnitSystem::measure::identity, cBiofilm_}, DataEntry{"CALCITE", UnitSystem::measure::identity, cCalcite_}, DataEntry{"MICROBES", UnitSystem::measure::density, cMicrobes_}, DataEntry{"OXYGEN", UnitSystem::measure::density, cOxygen_}, DataEntry{"UREA", UnitSystem::measure::density, cUrea_}, }; std::for_each(solutionVectors.begin(), solutionVectors.end(), [&sol](auto& entry) { if (!std::get<2>(entry).empty()) { sol.insert(std::get(entry), std::get(entry), std::move(std::get<2>(entry)), data::TargetType::RESTART_OPM_EXTENDED); } }); allocated_ = false; } template void MICPContainer:: readRestart(const unsigned globalDofIdx, const unsigned elemIdx, const data::Solution& sol) { if (this->allocated_) { return; } auto assign = [elemIdx, globalDofIdx, &sol](const std::string& name, ScalarBuffer& data) { if (!data.empty() && sol.has(name)) { data[elemIdx] = sol.data(name)[globalDofIdx]; } }; const auto fields = std::array{ std::pair{"BIOFILM", &cBiofilm_}, std::pair{"CALCITE", &cCalcite_}, std::pair{"MICROBES", &cMicrobes_}, std::pair{"OXYGEN", &cOxygen_}, std::pair{"UREA", &cUrea_}, }; std::for_each(fields.begin(), fields.end(), [&assign](const auto& p) { assign(p.first, *p.second); }); } template class MICPContainer; #if FLOW_INSTANTIATE_FLOAT template class MICPContainer; #endif } // namespace Opm