C++ main module for stochmagnet Package  1.0
Public Member Functions | Static Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes | List of all members
SM_Operator Class Referenceabstract

This class is describes an operator. More...

#include <SM_Operator.h>

Inheritance diagram for SM_Operator:
Inheritance graph
[legend]
Collaboration diagram for SM_Operator:
Collaboration graph
[legend]

Public Member Functions

virtual CORE_UniquePointer< SM_OperatorNewInstance () const =0
 create a New instance of this @retrun an unique pointer to the instance More...
 
virtual tMemSize getMemorySize () const
 return the memory size of the class and the memory size of all its attributes/associations More...
 
virtual tMemSize getContentsMemorySize () const
 return nthe memory size of the included associations More...
 
const tStringgetName () const
 return the operator name More...
 
virtual void copy (const SM_Operator &op)
 copy More...
 
virtual void discretize (const SM_System &system)
 discretize the operator : do nothing by default More...
 
virtual void computeMagneticField (const tIndex &t, const SM_Network &network, const tReal *mu, tReal *B) const =0
 compute the magnetic field by virtual method More...
 
virtual void computeMagneticFieldAndEnergy (const tIndex &t, const SM_Network &network, const tReal *mu, tReal *B, tReal &E) const =0
 compute the magnetic field by virtual method More...
 
void computeMagneticField (const tIndex &t, const SM_Network &network, const SM_RealField &Mu, SM_RealField &B) const
 compute the magnetic field at time t by virtual method More...
 
tReal computeEnergy (const tIndex &t, const SM_Network &network, const SM_RealField &mu) const
 compute the energy at time t by virtual method More...
 
virtual tReal computeEnergy (const tIndex &t, const SM_Network &network, const tReal *mu) const =0
 compute the energy at time t by virtual method More...
 
virtual tReal computeEnergy (const SM_Network &network, const tReal *mu, const tReal *H) const
 compute the energy More...
 
template<class T >
std::shared_ptr< T > getSharedPointer ()
 return the shared pointer for this More...
 
template<class T >
std::shared_ptr< const T > getConstSharedPointer () const
 return a const shared pointer for this More...
 
template<class T >
tBoolean isInstanceOf () const
 test if the clas T is an instance of this class More...
 
tString getClassName () const
 return the name of the class More...
 
tString getPointerString () const
 retrun the pointer of the class as a string More...
 
tString getIdentityString () const
 retrun the string identification of the class More...
 
virtual tString toString () const
 return the string representation of the object node More...
 

Static Public Member Functions

static tBoolean EnableMemoryStack (const tBoolean &isMemoryChecked)
 enable the memory stack More...
 
static void EnableMemoryStack ()
 enable the memory stack More...
 
static void DisableMemoryStack ()
 disable the memory stack More...
 
static tBoolean IsMemoryStackEnabled ()
 return trur if the memory stack is enabled More...
 
static tString MemoryStackToString ()
 get the memory stack in string More...
 
static tIndex GetRegisteredClassesNumber ()
 get the memory stack in string More...
 

Protected Member Functions

 SM_Operator (void)
 create a network class More...
 
virtual ~SM_Operator (void)
 destroy More...
 
void setName (const tString &name)
 set the name More...
 

Private Member Functions

template<class T >
std::shared_ptr< T > setThis (std::unique_ptr< T, CORE_Object::Delete > &up)
 set the shared pointer from an unique pointer More...
 

Private Attributes

tString mName
 
std::weak_ptr< CORE_ObjectmThis
 

Detailed Description

This class is describes an operator.

Author
Stephane Despreaux
Version
2.0

Constructor & Destructor Documentation

◆ SM_Operator()

SM_Operator::SM_Operator ( void  )
inlineprotected

create a network class

References mName.

◆ ~SM_Operator()

virtual SM_Operator::~SM_Operator ( void  )
inlineprotectedvirtual

destroy

Member Function Documentation

◆ computeEnergy() [1/3]

virtual tReal SM_Operator::computeEnergy ( const SM_Network network,
const tReal mu,
const tReal H 
) const
inlinevirtual

compute the energy

Parameters
[in]network: network
[in]mumagnetic moments of size nParticles x dim
[in]Hmagnetic field of size nParticles x dim
Returns
the energy of the operator \( E=-\frac{1}{2}.<H,Mu> \)

Reimplemented in SM_ZeemanOperator.

References SM_Network::getDimension(), SM_Network::getParticlesNumber(), tIndex, and tReal.

Here is the call graph for this function:

◆ computeEnergy() [2/3]

tReal SM_Operator::computeEnergy ( const tIndex t,
const SM_Network network,
const SM_RealField mu 
) const
inline

compute the energy at time t by virtual method

Parameters
[in]t: time step index
[in]network: network
[in]mumagnetic moments of size nParticles x dim
Returns
the energy of the operator

Referenced by SM_Test::testDerivative().

Here is the caller graph for this function:

◆ computeEnergy() [3/3]

virtual tReal SM_Operator::computeEnergy ( const tIndex t,
const SM_Network network,
const tReal mu 
) const
pure virtual

compute the energy at time t by virtual method

Parameters
[in]t: time step index
[in]network: network
[in]mumagnetic moments of size nParticles x dim
Returns
the energy of the operator

Implemented in SM_ZeemanOperator, SM_HeissenbergOperator, and SM_DemagnetizedOperator.

◆ computeMagneticField() [1/2]

void SM_Operator::computeMagneticField ( const tIndex t,
const SM_Network network,
const SM_RealField Mu,
SM_RealField B 
) const
inline

compute the magnetic field at time t by virtual method

Parameters
[in]t: time step index
[in]network: network
[in]Mumagnetic moments of size nParticles x dim
[out]Bmagnetic field of size nParticles x dim defined by B=H(mu)

References computeMagneticField(), CORE_Field< T, K, D, S, I >::getElementsNumber(), CORE_Field< T, K, D, S, I >::setElementsNumber(), and tIndex.

Here is the call graph for this function:

◆ computeMagneticField() [2/2]

virtual void SM_Operator::computeMagneticField ( const tIndex t,
const SM_Network network,
const tReal mu,
tReal B 
) const
pure virtual

compute the magnetic field by virtual method

Parameters
[in]t: time step index
[in]network: network
[in]mumagnetic moments of size nParticles x dim
[in,out]Bmagnetic field of size nParticles x dim

Implemented in SM_ZeemanOperator, SM_HeissenbergOperator, and SM_DemagnetizedOperator.

Referenced by computeMagneticField().

Here is the caller graph for this function:

◆ computeMagneticFieldAndEnergy()

virtual void SM_Operator::computeMagneticFieldAndEnergy ( const tIndex t,
const SM_Network network,
const tReal mu,
tReal B,
tReal E 
) const
pure virtual

compute the magnetic field by virtual method

Parameters
[in]t: time step index
[in]network: network
[in]mumagnetic moments of size nParticles x dim
[in,out]Bmagnetic field of size nParticles x dim
[out]Eenergy of the operator

Implemented in SM_ZeemanOperator, SM_HeissenbergOperator, and SM_DemagnetizedOperator.

Referenced by SM_Test::testDerivative().

Here is the caller graph for this function:

◆ copy()

virtual void SM_Operator::copy ( const SM_Operator op)
inlinevirtual

copy

Parameters
[in]op: operator to copy

Reimplemented in SM_ZeemanOperator.

References getName(), and mName.

Referenced by SM_ZeemanOperator::copy().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ DisableMemoryStack()

static void CORE_Object::DisableMemoryStack ( )
inlinestaticinherited

disable the memory stack

Referenced by CORE_Object::EnableMemoryStack().

Here is the caller graph for this function:

◆ discretize()

virtual void SM_Operator::discretize ( const SM_System system)
inlinevirtual

discretize the operator : do nothing by default

Parameters
[in]system: system of the operator

Reimplemented in SM_ZeemanOperator, SM_PermanentZeemanOperator, SM_ConstantZeemanOperator, and SM_DemagnetizedOperator.

Referenced by SM_DemagnetizedOperator::discretize().

Here is the caller graph for this function:

◆ EnableMemoryStack() [1/2]

static void CORE_Object::EnableMemoryStack ( )
inlinestaticinherited

enable the memory stack

Referenced by CORE_Object::EnableMemoryStack(), and CORE_Run::SetDebugOptions().

Here is the caller graph for this function:

◆ EnableMemoryStack() [2/2]

static tBoolean CORE_Object::EnableMemoryStack ( const tBoolean isMemoryChecked)
inlinestaticinherited

enable the memory stack

Parameters
[in]isMemoryChecked: true to verify memory allocation of CORE_Object classes
Returns
true if the memroy is checked

References CORE_Object::DisableMemoryStack(), CORE_Object::EnableMemoryStack(), and CORE_Object::IsMemoryStackEnabled().

Here is the call graph for this function:

◆ getClassName()

tString CORE_Object::getClassName ( ) const
inlineinherited

return the name of the class

Returns
the string name of the class

Referenced by CORE_Object::getIdentityString(), and CORE_Test::testTypes().

Here is the caller graph for this function:

◆ getConstSharedPointer()

template<class T >
std::shared_ptr<const T> CORE_Object::getConstSharedPointer ( ) const
inlineinherited

return a const shared pointer for this

Returns
the shared pointer as a type T

References CORE_Object::mThis.

◆ getContentsMemorySize()

virtual tMemSize SM_Operator::getContentsMemorySize ( ) const
inlinevirtual

return nthe memory size of the included associations

Returns
the memory size of the storage in bytes 1 Kb = 1024 bytes 1 Mb = 1024 Kb 1 Gb = 1024 Mb 1 Tb = 1024 Gb 1 Hb = 1024 Tb

Reimplemented from CORE_Object.

Reimplemented in SM_ZeemanOperator, and SM_DemagnetizedOperator.

References CORE_Object::getContentsMemorySize(), mName, and tMemSize.

Referenced by SM_DemagnetizedOperator::getContentsMemorySize(), SM_ZeemanOperator::getContentsMemorySize(), SM_HeissenbergOperator::getMemorySize(), getMemorySize(), and SM_TemplatedOperator< I >::getMemorySize().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getIdentityString()

tString CORE_Object::getIdentityString ( ) const
inlineinherited

retrun the string identification of the class

Returns
the string identity of the class

References CORE_Object::getClassName(), and core_functions::pointerToString().

Referenced by CORE_Test::testArray(), CORE_Test::testField(), CORE_Test::testTypes(), CORE_Object::toString(), CORE_ClassFactory::toString(), and CORE_Field< T, K, D, S, I >::toString().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getMemorySize()

virtual tMemSize SM_Operator::getMemorySize ( ) const
inlinevirtual

return the memory size of the class and the memory size of all its attributes/associations

Returns
the memory size of the class and the memory size of its attributes/associations in bytes The mamory size is :
  • the added size of the base classes which contains:
    • the primary attributes size depends on the order: (first delare the smallest attributes size
    • all virtual functions costs <pointer-size> (4 32xor 8 64x) bytes by virtual function
    • virtual inherihtance will increase of (4 or 8) bytes
  • we add the size of the contains values of the attributes : for example the size of a string is the length of the string 1 octet = 1 byte 1 Ko = 1024 bytes 1 Mo = 1024 Ko 1 Go = 1024 Mo

Reimplemented from SM_Object.

Reimplemented in SM_ZeemanOperator, SM_TemplatedOperator< I >, SM_TemplatedOperator< SM_DemagnetizedOperator >, SM_TemplatedOperator< SM_HeissenbergOperator >, SM_TemplatedOperator< SM_ZeemanOperator >, SM_PermanentZeemanOperator, SM_HeissenbergOperator, SM_DemagnetizedOperator, and SM_ConstantZeemanOperator.

References getContentsMemorySize().

Here is the call graph for this function:

◆ getName()

const tString& SM_Operator::getName ( ) const
inline

return the operator name

Returns
the name of the operator

References mName.

Referenced by copy(), and SM_TemplatedSystem< SystemImpl >::getOperatorNames().

Here is the caller graph for this function:

◆ getPointerString()

tString CORE_Object::getPointerString ( ) const
inlineinherited

retrun the pointer of the class as a string

Returns
the pointer of the calss as a string

References core_functions::pointerToString().

Here is the call graph for this function:

◆ GetRegisteredClassesNumber()

static tIndex CORE_Object::GetRegisteredClassesNumber ( )
inlinestaticinherited

get the memory stack in string

Returns
the string representation of the memory stack

◆ getSharedPointer()

template<class T >
std::shared_ptr<T> CORE_Object::getSharedPointer ( )
inlineinherited

return the shared pointer for this

Returns
the shared pointer as a type T

References CORE_Object::mThis.

◆ isInstanceOf()

template<class T >
tBoolean CORE_Object::isInstanceOf ( ) const
inlineinherited

test if the clas T is an instance of this class

Returns
true if the object is an instance of T

Referenced by SM_Beam::templatedSimulate().

Here is the caller graph for this function:

◆ IsMemoryStackEnabled()

static tBoolean CORE_Object::IsMemoryStackEnabled ( )
inlinestaticinherited

return trur if the memory stack is enabled

Referenced by CORE_Object::EnableMemoryStack(), and main().

Here is the caller graph for this function:

◆ MemoryStackToString()

static tString CORE_Object::MemoryStackToString ( )
inlinestaticinherited

get the memory stack in string

Returns
the string representation of the memory stack

Referenced by main().

Here is the caller graph for this function:

◆ NewInstance()

virtual CORE_UniquePointer<SM_Operator> SM_Operator::NewInstance ( ) const
pure virtual

create a New instance of this @retrun an unique pointer to the instance

Implemented in SM_ZeemanOperator, SM_HeissenbergOperator, SM_DemagnetizedOperator, and SM_ConstantZeemanOperator.

◆ setName()

void SM_Operator::setName ( const tString name)
inlineprotected

set the name

Parameters
[in]namename of the operator

References mName.

Referenced by SM_DemagnetizedOperator::SM_DemagnetizedOperator(), SM_HeissenbergOperator::SM_HeissenbergOperator(), and SM_ZeemanOperator::SM_ZeemanOperator().

Here is the caller graph for this function:

◆ setThis()

template<class T >
std::shared_ptr<T> CORE_Object::setThis ( std::unique_ptr< T, CORE_Object::Delete > &  up)
inlineprivateinherited

set the shared pointer from an unique pointer

Parameters
[in,out]upunique pointer of the class at input, points to null pointer at output
Returns
the shared pointer of the class

Method only calledby the friend class CORE_ClassFactory::NewSharedInstance()

References CORE_Object::mThis.

◆ toString()

virtual tString CORE_Object::toString ( ) const
inlinevirtualinherited

Member Data Documentation

◆ mName

tString SM_Operator::mName
private

◆ mThis

std::weak_ptr<CORE_Object> CORE_Object::mThis
privateinherited

The documentation for this class was generated from the following file: