Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90367178
contact_solver.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, 00:41
Size
2 KB
Mime Type
text/x-c++
Expires
Sun, Nov 3, 00:41 (1 d, 22 h)
Engine
blob
Format
Raw Data
Handle
22054400
Attached To
rTAMAAS tamaas
contact_solver.hh
View Options
/**
* @file
* @section LICENSE
*
* Copyright (©) 2016-2020 EPFL (École Polytechnique Fédérale de Lausanne),
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifndef __CONTACT_SOLVER_HH__
#define __CONTACT_SOLVER_HH__
/* -------------------------------------------------------------------------- */
#include "model.hh"
#include "tamaas.hh"
#include "meta_functional.hh"
/* -------------------------------------------------------------------------- */
namespace
tamaas
{
class
ContactSolver
{
public
:
/// Constructor
ContactSolver
(
Model
&
model
,
const
GridBase
<
Real
>&
surface
,
Real
tolerance
);
/// Destructor
virtual
~
ContactSolver
();
public
:
/// Print state of solve
virtual
void
printState
(
UInt
iter
,
Real
cost_f
,
Real
error
);
/// Set maximum number of iterations
void
setMaxIterations
(
UInt
n
)
{
max_iterations
=
n
;
}
/// Set dump_frequency
void
setDumpFrequency
(
UInt
n
)
{
dump_frequency
=
n
;
}
/// Add term to functional
void
addFunctionalTerm
(
functional
::
Functional
*
func
);
// Virtual functions
public
:
virtual
Real
solve
(
std
::
vector
<
Real
>
/*load*/
)
{
TAMAAS_EXCEPTION
(
"solve() not implemented"
);
}
virtual
Real
solve
(
Real
load
)
{
return
solve
(
std
::
vector
<
Real
>
{
load
});
}
public
:
GridBase
<
Real
>&
getSurface
()
{
return
surface
;
}
Model
&
getModel
()
{
return
model
;
}
protected
:
Model
&
model
;
GridBase
<
Real
>
surface
;
std
::
shared_ptr
<
GridBase
<
Real
>>
_gap
=
nullptr
;
functional
::
MetaFunctional
functional
;
Real
tolerance
;
UInt
max_iterations
=
1000
;
Real
surface_stddev
;
UInt
dump_frequency
=
100
;
};
}
// namespace tamaas
/* -------------------------------------------------------------------------- */
#endif
// __CONTACT_SOLVER_HH__
Event Timeline
Log In to Comment