Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92433217
random_internal_field.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
Wed, Nov 20, 06:26
Size
3 KB
Mime Type
text/x-c++
Expires
Fri, Nov 22, 06:26 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22388248
Attached To
rAKA akantu
random_internal_field.hh
View Options
/**
* @file random_internal_field.hh
*
* @author Nicolas Richart <nicolas.richart@epfl.ch>
*
* @date creation: Wed Nov 13 2013
* @date last modification: Tue Jul 29 2014
*
* @brief Random internal material parameter
*
* @section LICENSE
*
* Copyright (©) 2014 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 "aka_common.hh"
#include "aka_random_generator.hh"
#include "internal_field.hh"
/* -------------------------------------------------------------------------- */
#ifndef __AKANTU_RANDOM_INTERNAL_FIELD_HH__
#define __AKANTU_RANDOM_INTERNAL_FIELD_HH__
__BEGIN_AKANTU__
template
<
typename
T
,
template
<
typename
>
class
BaseField
=
InternalField
,
template
<
typename
>
class
Generator
=
RandGenerator
>
class
RandomInternalField
:
public
BaseField
<
T
>
{
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
public
:
RandomInternalField
(
const
ID
&
id
,
Material
&
material
);
virtual
~
RandomInternalField
();
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
private
:
RandomInternalField
operator
=
(
__attribute__
((
unused
))
const
RandomInternalField
&
other
)
{};
public
:
AKANTU_GET_MACRO
(
RandomParameter
,
random_parameter
,
const
RandomParameter
<
T
>
);
virtual
void
initialize
(
UInt
nb_component
);
void
setDefaultValue
(
const
T
&
value
);
void
setRandomDistribution
(
const
RandomParameter
<
T
>
&
param
);
virtual
void
printself
(
std
::
ostream
&
stream
,
unsigned
int
indent
=
0
)
const
;
protected
:
virtual
void
setArrayValues
(
T
*
begin
,
T
*
end
);
/* ------------------------------------------------------------------------ */
/* Accessors */
/* ------------------------------------------------------------------------ */
public
:
inline
operator
Real
()
const
;
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
private
:
/// random parameter containing the distribution and base value
RandomParameter
<
T
>
random_parameter
;
};
/// standard output stream operator
template
<
typename
T
>
inline
std
::
ostream
&
operator
<<
(
std
::
ostream
&
stream
,
const
RandomInternalField
<
T
>
&
_this
)
{
_this
.
printself
(
stream
);
return
stream
;
}
__END_AKANTU__
#endif
/* __AKANTU_RANDOM_INTERNAL_FIELD_HH__ */
Event Timeline
Log In to Comment