Revision 086c190c27274f74c7f9ea204a3366758700ba56 authored by Lars Bilke on 07 October 2021, 09:17:23 UTC, committed by Lars Bilke on 07 October 2021, 09:58:34 UTC
See
https://gitlab.opengeosys.org/ogs/xdmflib/-/commit/2e2439f4c867e872bc3e646b01f6e081667c4b02.
1 parent 7d226dc
Raw File
CreateBoundaryCondition.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#include <memory>
#include <vector>

namespace MeshLib
{
class Mesh;
}

namespace NumLib
{
class LocalToGlobalIndexMap;
}
namespace ParameterLib
{
struct ParameterBase;
}
namespace ProcessLib
{
class BoundaryCondition;
struct BoundaryConditionConfig;
class Process;

std::unique_ptr<BoundaryCondition> createBoundaryCondition(
    const BoundaryConditionConfig& config,
    const NumLib::LocalToGlobalIndexMap& dof_table,
    const MeshLib::Mesh& bulk_mesh, const int variable_id,
    const unsigned integration_order, const unsigned shapefunction_order,
    const std::vector<std::unique_ptr<ParameterLib::ParameterBase>>& parameters,
    const Process& process);

}  // namespace ProcessLib
back to top