Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90392191
surface_selector.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 1, 06:28
Size
4 KB
Mime Type
text/x-c++
Expires
Sun, Nov 3, 06:28 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22065902
Attached To
rAKA akantu
surface_selector.hh
View Options
/**
* @file surface_selector.hh
*
* @author Mohit Pundir <pundir.pundir@epfl.ch>
*
* @date creation: Fri Jun 21 2019
* @date last modification: Fri Jun 21 2019
*
* @brief Node selectors for contact detection
*
* @section LICENSE
*
* Copyright (©) 2015-2018 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* Akantu is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Akantu 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 Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Akantu. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#include "mesh.hh"
#include "mesh_utils.hh"
#include "parsable.hh"
#if defined(AKANTU_COHESIVE_ELEMENT)
#include "cohesive_element_inserter.hh"
#endif
/* -------------------------------------------------------------------------- */
#include <memory>
/* -------------------------------------------------------------------------- */
#ifndef __AKANTU_SURFACE_SELECTOR_HH__
#define __AKANTU_SURFACE_SELECTOR_HH__
namespace
akantu
{
class
Model
;
class
GlobalIdsUpdater
;
}
// namespace akantu
namespace
akantu
{
/**
* main class to assign surfaces for contact detection
*/
class
SurfaceSelector
:
public
MeshEventHandler
,
public
Parsable
{
public
:
SurfaceSelector
(
Mesh
&
mesh
);
virtual
~
SurfaceSelector
()
=
default
;
public
:
virtual
Array
<
UInt
>
&
getMasterList
()
=
0
;
virtual
Array
<
UInt
>
&
getSlaveList
()
=
0
;
protected
:
Mesh
&
mesh
;
};
/* -------------------------------------------------------------------------- */
/**
* class that selects contact surface from physical names
*/
class
PhysicalSurfaceSelector
:
public
SurfaceSelector
{
public
:
PhysicalSurfaceSelector
(
Mesh
&
mesh
);
public
:
Array
<
UInt
>
&
getMasterList
()
override
;
Array
<
UInt
>
&
getSlaveList
()
override
;
protected
:
std
::
string
master
;
std
::
string
slave
;
};
/* -------------------------------------------------------------------------- */
/**
* class that selects contact surface from cohesive elements
*/
#if defined(AKANTU_COHESIVE_ELEMENT)
class
CohesiveSurfaceSelector
:
public
SurfaceSelector
{
public
:
CohesiveSurfaceSelector
(
Mesh
&
mesh
);
protected
:
void
onNodesAdded
(
const
Array
<
UInt
>
&
nodes_list
,
const
NewNodesEvent
&
event
)
override
;
void
filterBoundaryElements
(
Array
<
Element
>
&
elements
,
Array
<
Element
>
&
boundary_elements
);
public
:
Array
<
UInt
>
&
getMasterList
()
override
;
Array
<
UInt
>
&
getSlaveList
()
override
;
AKANTU_GET_MACRO_NOT_CONST
(
NewNodesList
,
new_nodes_list
,
Array
<
UInt
>
&
);
AKANTU_GET_MACRO
(
NewNodesList
,
new_nodes_list
,
const
Array
<
UInt
>
&
);
protected
:
Mesh
&
mesh_facets
;
Array
<
UInt
>
new_nodes_list
;
};
/* -------------------------------------------------------------------------- */
/**
* class that selects contact surface from both cohesive elements and
* physical names
*/
class
AllSurfaceSelector
:
public
SurfaceSelector
{
public
:
AllSurfaceSelector
(
Mesh
&
mesh
);
protected
:
void
onNodesAdded
(
const
Array
<
UInt
>
&
nodes_list
,
const
NewNodesEvent
&
event
)
override
;
void
filterBoundaryElements
(
Array
<
Element
>
&
elements
,
Array
<
Element
>
&
boundary_elements
);
public
:
Array
<
UInt
>
&
getMasterList
()
override
;
Array
<
UInt
>
&
getSlaveList
()
override
;
AKANTU_GET_MACRO_NOT_CONST
(
NewNodesList
,
new_nodes_list
,
Array
<
UInt
>
&
);
AKANTU_GET_MACRO
(
NewNodesList
,
new_nodes_list
,
const
Array
<
UInt
>
&
);
protected
:
std
::
string
master
;
std
::
string
slave
;
Mesh
&
mesh_facets
;
Array
<
UInt
>
new_nodes_list
;
};
#endif
}
// namespace akantu
#endif
/* __AKANTU_SURFACE_SELECTOR_HH__ */
Event Timeline
Log In to Comment