MAST
dirichlet_boundary_condition.cpp
Go to the documentation of this file.
1 /*
2  * MAST: Multidisciplinary-design Adaptation and Sensitivity Toolkit
3  * Copyright (C) 2013-2019 Manav Bhatia
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19 
20 // MAST includes
23 
24 
25 // libMesh includes
26 #include "libmesh/zero_function.h"
27 
28 void
29 MAST::DirichletBoundaryCondition::init(const libMesh::boundary_id_type bid,
30  const std::vector<unsigned int>& constrained_vars) {
31 
32  // should not have been initialized if this is called
33  libmesh_assert(_dirichlet_boundary.get() == nullptr);
34 
35  std::set<libMesh::boundary_id_type> bid_set;
36  bid_set.insert(bid);
37 
38  std::unique_ptr<libMesh::FunctionBase<Real> > function;
39 
40  // if the function was not give, then assume it to be zero function
41  function.reset(new libMesh::ZeroFunction<Real>);
42 
43  _dirichlet_boundary.reset(new libMesh::DirichletBoundary(bid_set,
44  constrained_vars,
45  function.get()));
46 }
47 
48 
std::unique_ptr< libMesh::DirichletBoundary > _dirichlet_boundary
Dirichlet boundary function for this boundary.
void init(const libMesh::boundary_id_type bid, const std::vector< unsigned int > &constrained_vars)
initializes the object for the specified domain id (either boundary, or subdomain), for the displacement components initialized using a bitwise operator.