C++ main module for emicrom Package  1.0
EMM_DisplacementTest.h
Go to the documentation of this file.
1 #ifndef EMM_DisplacementTest_H
2 #define EMM_DisplacementTest_H
3 
4 #include "EMM_Test.h"
5 
6 
16 
18 
20  // ATTRIBUTES
21 
22 
23 public:
24 
25 
26 protected:
27  // METHODS
28 
29  // CONSTRUCTORS
30 
34 
35 
36 
37  // DESTRUCTORS
38 
39 
42  virtual ~EMM_DisplacementTest(void);
43 
44 
45 
46 public:
49  inline static SP::EMM_DisplacementTest New() {
50  SP::EMM_DisplacementTest p(new EMM_DisplacementTest(),
52  p->setThis(p);
53  return p;
54  };
55 
56 
57 
58 
59 
63  virtual tBoolean test(const CORE_Run& runner,const map<tString,tString>& options) const;
64 
65 
66 private:
67 
68 
72  tBoolean elasticTensorTest(const CORE_Run& runner,const map<tString,tString>& options) const;
73  tBoolean elasticFVMTensorTest(const CORE_Run& runner,const map<tString,tString>& options) const;
74  tBoolean elasticFEMTensorTest(const CORE_Run& runner,const map<tString,tString>& options) const;
75 
79  tBoolean elasticEnergyTest(const CORE_Run& runner,const map<tString,tString>& options) const;
80  tBoolean elasticFVMEnergyTest(const CORE_Run& runner,const map<tString,tString>& options) const;
81  tBoolean elasticFEMEnergyTest(const CORE_Run& runner,const map<tString,tString>& options) const;
82 
83 
84 
85 };
86 
87 #endif
tBoolean elasticFEMTensorTest(const CORE_Run &runner, const map< tString, tString > &options) const
Definition: EMM_DisplacementTest.cpp:277
tBoolean elasticFVMTensorTest(const CORE_Run &runner, const map< tString, tString > &options) const
Definition: EMM_DisplacementTest.cpp:129
This class is a Run class for Common package.
Definition: CORE_Run.h:38
virtual tBoolean test(const CORE_Run &runner, const map< tString, tString > &options) const
make the test
Definition: EMM_DisplacementTest.cpp:27
#define tBoolean
Definition: types.h:139
This class is a test class for E-MicromM package.
Definition: EMM_Test.h:25
tBoolean elasticEnergyTest(const CORE_Run &runner, const map< tString, tString > &options) const
test the elastic energy
Definition: EMM_DisplacementTest.cpp:420
DEFINE_SPTR(EMM_DisplacementTest)
tBoolean elasticFEMEnergyTest(const CORE_Run &runner, const map< tString, tString > &options) const
Definition: EMM_DisplacementTest.cpp:532
virtual ~EMM_DisplacementTest(void)
destroy the class
Definition: EMM_DisplacementTest.cpp:24
static SP::EMM_DisplacementTest New()
create a test class
Definition: EMM_DisplacementTest.h:49
tBoolean elasticFVMEnergyTest(const CORE_Run &runner, const map< tString, tString > &options) const
Definition: EMM_DisplacementTest.cpp:428
SP_OBJECT(EMM_DisplacementTest)
tBoolean elasticTensorTest(const CORE_Run &runner, const map< tString, tString > &options) const
test the elastic tensor
Definition: EMM_DisplacementTest.cpp:120
EMM_DisplacementTest(void)
create the class
Definition: EMM_DisplacementTest.cpp:21
class Free introduced for deleting a smart pointer
Definition: CORE_Object.h:141
This class is a test class for testing primary methods for displacement operator. ...
Definition: EMM_DisplacementTest.h:17