Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91408128
coupling_interface.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
Sun, Nov 10, 20:02
Size
2 KB
Mime Type
text/x-c++
Expires
Tue, Nov 12, 20:02 (2 d)
Engine
blob
Format
Raw Data
Handle
22258837
Attached To
rLIBMULTISCALE LibMultiScale
coupling_interface.hh
View Options
/**
* @file coupling_interface.hh
*
* @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
*
* @date Wed Jan 15 17:00:43 2014
*
* @brief Interface to all coupling
*
* @section LICENSE
*
* Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* LibMultiScale 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.
*
* LibMultiScale 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 LibMultiScale. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef __LIBMULTISCALE_COUPLING_INTERFACE_HH__
#define __LIBMULTISCALE_COUPLING_INTERFACE_HH__
/* -------------------------------------------------------------------------- */
#include "lib_continuum.hh"
#include "lib_dd.hh"
#include "lib_md.hh"
#include "lm_parsable.hh"
/* -------------------------------------------------------------------------- */
__BEGIN_LIBMULTISCALE__
class
CouplingInterface
:
public
Parsable
,
public
Component
{
public
:
CouplingInterface
(
const
std
::
string
&
name
)
:
LMObject
(
name
)
{}
virtual
~
CouplingInterface
()
{}
//! function to release any memory allocated
// virtual void clearAll() = 0;
//! function for applying the coupling
// virtual void coupling(CouplingStage stage) = 0;
//! function for initiation
// virtual void init() = 0;
void
declareParams
()
override
;
virtual
void
coupling
(
CouplingStage
stage
);
virtual
void
clearAll
();
virtual
void
init
();
virtual
void
compute_make_call
()
override
;
};
__END_LIBMULTISCALE__
/* -------------------------------------------------------------------------- */
// file generated by CMake
#include "coupler_list.hh"
/* -------------------------------------------------------------------------- */
#endif
/* __LIBMULTISCALE_COUPLING_INTERFACE_HH__ */
Event Timeline
Log In to Comment