C++ main module for stochmagnet Package
1.0
|
This class is describes a demagnetized operator. More...
#include <SM_DemagnetizedOperator.h>
Public Member Functions | |
virtual CORE_UniquePointer< SM_Operator > | NewInstance () const override |
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 the memory size of the included associations More... | |
virtual void | discretize (const SM_System &system) |
discretize the operator : do nothing by default More... | |
void | updateMagnetizedCells (const SM_RealField &Mu) |
update the boolean array to indicates if mu at particule is magnetized More... | |
virtual void | computeMagneticField (const tIndex &t, const SM_Network &network, const tReal *mu, tReal *B) const override |
compute the magnetic field at time step t by virtual method More... | |
virtual void | computeMagneticFieldAndEnergy (const tIndex &t, const SM_Network &network, const tReal *mu, tReal *B, tReal &E) const override |
compute the magnetic field at time step t by virtual method More... | |
void | computeTemplatedMagneticField (const tIndex &t, const SM_Network &network, const tReal *mu, tReal *B) const |
compute the magnetic field More... | |
void | computeTemplatedMagneticFieldAndEnergy (const tIndex &t, const SM_Network &network, const tReal *mu, tReal *B, tReal &E) const |
compute the magnetic field and energy More... | |
virtual tReal | computeEnergy (const tIndex &t, const SM_Network &network, const tReal *mu) const override |
compute the energy at time step index t More... | |
tReal | computeTemplatedEnergy (const tIndex &t, const SM_Network &network, const tReal *mu) const |
compute the energy at time step index t More... | |
void | computeTemplatedMagneticFieldAndEnergy (const tIndex &t, const SM_Network &network, const tReal *mu, tReal *H, tReal &E) |
compute the magnetic field and energy at time t More... | |
const tString & | getName () const |
return the operator name More... | |
virtual void | copy (const SM_Operator &op) |
copy 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 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 CORE_UniquePointer< SM_DemagnetizedOperator > | New () |
build a new instance of the operator More... | |
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_DemagnetizedOperator (void) | |
create a network class More... | |
virtual | ~SM_DemagnetizedOperator (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 | |
CORE_BooleanArray | mAreMagnetizedCells |
tString | mName |
std::weak_ptr< CORE_Object > | mThis |
This class is describes a demagnetized operator.
The demagnetized energy is \( E= \frac{1}{\lambda^3} \displaystyle \sum_{i,j=0,i\neq j}^{i,j=P-1} \left ( \frac{<\mu_i,\mu_j>}{r_{ij}^3} - 3 \frac{<r_{ij},\mu_i><r_{ij},\mu_j>}{r_{ij}^5} \right ) \) with \( r_{ij}=P_j-P_i \)
In order to have \(\displaystyle \forall i \in [0,P[, \frac{dE}{d\mu_i}(P)=-H(P) \),
the corresponding magnetic excitation field is: \( H(P_i)= - \frac{2}{\lambda^3} \displaystyle \sum_{j=0,j \neq i}^{P-1} \left ( \frac{\mu_j}{r_{ij}^3} - 3 \frac{r_{ij} <r_{ij},\mu_j>}{r_{ij}^5} \right ) \)
As H is linear with respect of \( \mu_i\), the energy can also be computed as \( \displaystyle E=- \frac{1}{2} \sum_{i=0}^{P-1} <H(P_i),\mu(P_i)> \)
|
inlineprotected |
create a network class
References SM_Operator::setName().
Referenced by New().
|
inlineprotectedvirtual |
destroy
|
inlinevirtualinherited |
compute the energy
[in] | network | : network |
[in] | mu | magnetic moments of size nParticles x dim |
[in] | H | magnetic field of size nParticles x dim |
Reimplemented in SM_ZeemanOperator.
References SM_Network::getDimension(), SM_Network::getParticlesNumber(), tIndex, and tReal.
|
inlineinherited |
compute the energy at time t by virtual method
[in] | t | : time step index |
[in] | network | : network |
[in] | mu | magnetic moments of size nParticles x dim |
Referenced by SM_Test::testDerivative().
|
inlineoverridevirtual |
compute the energy at time step index t
[in] | t | : time step index |
[in] | network | : network of the field |
[in] | mu | magnetic moments of size nParticles x dim |
Implements SM_Operator.
|
inlineinherited |
compute the magnetic field at time t by virtual method
[in] | t | : time step index |
[in] | network | : network |
[in] | Mu | magnetic moments of size nParticles x dim |
[out] | B | magnetic field of size nParticles x dim defined by B=H(mu) |
References SM_Operator::computeMagneticField(), CORE_Field< T, K, D, S, I >::getElementsNumber(), CORE_Field< T, K, D, S, I >::setElementsNumber(), and tIndex.
|
inlineoverridevirtual |
compute the magnetic field at time step t by virtual method
[in] | t | : time step index |
[in] | network | : network of the field |
[in] | mu | magnetic moments of size nParticles x dim |
[in,out] | B | magnetic field of size nParticles x dim |
\( B(P_i) += - \frac{1}{\lambda^3} \displasytyle \sum_{j=0,j \neq i}^{P-1} \left ( \frac{\mu_i}{r_{ij}^3} - 3 \frac{r_{ij} <r_{ij},\mu_j>}{r_{ij}^5} \right ) \)
Implements SM_Operator.
|
inlineoverridevirtual |
compute the magnetic field at time step t by virtual method
[in] | t | : time step index |
[in] | network | : network of the field |
[in] | mu | magnetic moments of size nParticles x dim |
[in,out] | B | magnetic field of size nParticles x dim |
[out] | E | Energy of the operator |
Implements SM_Operator.
|
inline |
compute the energy at time step index t
[in] | t | : time step index |
[in] | network | : network of the field |
[in] | mu | magnetic moments of size nParticles x dim |
References SM_Network::getDimension(), SM_Network::getLambda(), SM_Network::getParticlesCoordinates(), SM_Network::getParticlesNumber(), CORE_Field< T, K, D, S, I >::getValues(), tIndex, and tReal.
|
inline |
compute the magnetic field
[in] | t | : time step index |
[in] | network | : network of the field |
[in] | mu | magnetic moments of size nParticles x dim |
[in,out] | B | magnetic field of size nParticles x dim return : \( B(P_i) += - \frac{1}{\lambda^3} \displasytyle \sum_{j=0,j \neq i}^{P-1} \left ( \frac{\mu_i}{r_{ij}^3} - 3 \frac{r_{ij} <r_{ij},\mu_j>}{r_{ij}^5} \right ) \) |
References tReal.
Referenced by SM_TemplatedSystem< SystemImpl >::computeTemplatedMagneticField().
|
inline |
compute the magnetic field and energy
[in] | t | : time step index |
[in] | network | : network of the field |
[in] | mu | magnetic moments of size nParticles x dim |
[in,out] | B | magnetic field of size nParticles x dim |
[out] | E | energy of the operator return : \( B(P_i) += - \frac{1}{\lambda^3} \displasytyle \sum_{j=0,j \neq i}^{P-1} \left ( \frac{\mu_i}{r_{ij}^3} - 3 \frac{r_{ij} <r_{ij},\mu_j>}{r_{ij}^5} \right ) \) |
References SM_Network::getDimension(), SM_Network::getLambda(), SM_Network::getParticlesCoordinates(), SM_Network::getParticlesNumber(), CORE_Field< T, K, D, S, I >::getValues(), tIndex, and tReal.
Referenced by SM_TemplatedSystem< SystemImpl >::computeTemplatedMagneticFieldAndEnergies().
|
inlineinherited |
compute the magnetic field and energy at time t
[in] | t | index of time step for computation |
[in] | network | : network of the field |
[in] | mu | magnetic moments of size nParticles x dim |
[in,out] | H | magnetic field of size nParticles x dim |
[out] | E | energy of the operator |
|
inlinevirtualinherited |
copy
[in] | op | : operator to copy |
Reimplemented in SM_ZeemanOperator.
References SM_Operator::getName(), and SM_Operator::mName.
Referenced by SM_ZeemanOperator::copy().
|
inlinestaticinherited |
disable the memory stack
Referenced by CORE_Object::EnableMemoryStack().
|
virtual |
discretize the operator : do nothing by default
[in] | system | : system of the operator |
Reimplemented from SM_Operator.
References SM_Operator::discretize(), SM_System::getInitialMagneticMoment(), and updateMagnetizedCells().
|
inlinestaticinherited |
enable the memory stack
Referenced by CORE_Object::EnableMemoryStack(), and CORE_Run::SetDebugOptions().
|
inlinestaticinherited |
enable the memory stack
[in] | isMemoryChecked | : true to verify memory allocation of CORE_Object classes |
References CORE_Object::DisableMemoryStack(), CORE_Object::EnableMemoryStack(), and CORE_Object::IsMemoryStackEnabled().
|
inlineinherited |
return the name of the class
Referenced by CORE_Object::getIdentityString(), and CORE_Test::testTypes().
|
inlineinherited |
return a const shared pointer for this
References CORE_Object::mThis.
|
inlinevirtual |
return the memory size of the included associations
Reimplemented from SM_Operator.
References SM_Operator::getContentsMemorySize(), CORE_PtrArray< T, I >::getSize(), mAreMagnetizedCells, tBoolean, and tMemSize.
Referenced by getMemorySize().
|
inlineinherited |
retrun the string identification 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().
|
inlinevirtual |
return the memory size of the class and the memory size of all its attributes/associations
Reimplemented from SM_TemplatedOperator< SM_DemagnetizedOperator >.
References getContentsMemorySize().
|
inlineinherited |
return the operator name
References SM_Operator::mName.
Referenced by SM_Operator::copy(), and SM_TemplatedSystem< SystemImpl >::getOperatorNames().
|
inlineinherited |
retrun the pointer of the class as a string
References core_functions::pointerToString().
|
inlinestaticinherited |
get the memory stack in string
|
inlineinherited |
return the shared pointer for this
References CORE_Object::mThis.
|
inlineinherited |
test if the clas T is an instance of this class
Referenced by SM_Beam::templatedSimulate().
|
inlinestaticinherited |
return trur if the memory stack is enabled
Referenced by CORE_Object::EnableMemoryStack(), and main().
|
inlinestaticinherited |
get the memory stack in string
Referenced by main().
|
inlinestatic |
build a new instance of the operator
References SM_DemagnetizedOperator().
Referenced by SM_Run::createMagneticDipolarMap(), NewInstance(), and SM_ClassFactory::NewInstance().
|
inlineoverridevirtual |
create a New instance of this @retrun an unique pointer to the instance
Implements SM_Operator.
References New().
|
inlineprotectedinherited |
set the name
[in] | name | name of the operator |
References SM_Operator::mName.
Referenced by SM_DemagnetizedOperator(), SM_HeissenbergOperator::SM_HeissenbergOperator(), and SM_ZeemanOperator::SM_ZeemanOperator().
|
inlineprivateinherited |
set the shared pointer from an unique pointer
[in,out] | up | unique pointer of the class at input, points to null pointer at output |
Method only calledby the friend class CORE_ClassFactory::NewSharedInstance()
References CORE_Object::mThis.
|
inlinevirtualinherited |
return the string representation of the object node
Reimplemented in SM_TimeStepper, SM_System, SM_StochasticFunction, SM_Network, SM_LandauLifschitzFunction, SM_Beam, CORE_Field< T, K, D, S, I >, CORE_Field< T, K, D, CORE_StdPtrArray< T >, CORE_StdPtrField< T, K, D > >, CORE_Field< T, K, D, CORE_StdValArray< T >, CORE_StdValField< T, K, D > >, CORE_Collection< T, I >, CORE_ClassFactory, and SM_NoiseRateFunction.
References CORE_Object::getIdentityString().
Referenced by SM_Run::run(), CORE_Collection< T, I >::toString(), SM_Beam::toString(), SM_Network::toString(), SM_StochasticFunction::toString(), SM_System::toString(), and SM_TimeStepper::toString().
|
inline |
update the boolean array to indicates if mu at particule is magnetized
[in] | mu | : initial mu |
References CORE_PtrArray< T, I >::begin(), CORE_Field< T, K, D, S, I >::cbegin(), CORE_PtrArray< T, I >::end(), CORE_Field< T, K, D, S, I >::getDimension(), CORE_Field< T, K, D, S, I >::getElementsNumber(), mAreMagnetizedCells, CORE_PtrArray< T, I >::setSize(), and tReal.
Referenced by discretize().
|
private |
Referenced by getContentsMemorySize(), and updateMagnetizedCells().
|
privateinherited |
|
privateinherited |
Referenced by CORE_Object::getConstSharedPointer(), CORE_Object::getSharedPointer(), and CORE_Object::setThis().