Computer Assited Medical Intervention Tool Kit  version 3.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
AnsysSimulator.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * $CAMITK_LICENCE_BEGIN$
3  *
4  * CamiTK - Computer Assisted Medical Intervention ToolKit
5  * (c) 2001-2014 UJF-Grenoble 1, CNRS, TIMC-IMAG UMR 5525 (GMCAO)
6  *
7  * Visit http://camitk.imag.fr for more information
8  *
9  * This file is part of CamiTK.
10  *
11  * CamiTK is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * CamiTK is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU Lesser General Public License version 3 for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * version 3 along with CamiTK. If not, see <http://www.gnu.org/licenses/>.
22  *
23  * $CAMITK_LICENCE_END$
24  ****************************************************************************/
25 
26 #ifndef SIMULATOR_SIMULATORS_ANSYS_ANSYSSIMULATOR_H
27 #define SIMULATOR_SIMULATORS_ANSYS_ANSYSSIMULATOR_H
28 
29 #include <string>
30 
33 
41 
42  public:
46  AnsysSimulator(MonitoringManager* monitoringManager,const char* file);
47 
50 
51  void init();
52  void end();
53  void getPosition(int index, double position[3]);
54  void getForce(int index, double force[3]);
55 
56  bool doCalc();
57  int getMaxStep();
58  double getTime(int step);
59 
61  virtual void createPml(const char* inputFile,const char* pmlFile);
64 
65  private:
72 
74  void runAnsys();
75 
76 };
77 
78 #endif // SIMULATOR_SIMULATORS_ANSYS_ANSYSSIMULATOR_H
MonitoringManager * monitoringManager
monitoring manager
Definition: Simulator.h:82
An interactive simulator is a simulator that we cannot control step by step (ex: Ansys) Entire simula...
Definition: NonInteractiveSimulator.h:38
Ansys batch file handler.
Definition: AnsysBatch.h:44
void end()
end simultor
int getMaxStep()
get the number of steps after simulation
~AnsysSimulator()
destructor
double getTime(int step)
get the time of simulation of a given step
bool doCalc()
make entire simulation ans store results of all step
AnsysSimulator(MonitoringManager *monitoringManager)
constructor
void getForce(int index, double force[3])
get current force for one atom
Manager of the benchmark tests.
Definition: MonitoringManager.h:50
CamiTK CamiTKDir txt file(STRINGS"${FIND_CAMITK_USER_BASE_DIR}/CamiTK/CamiTKDir.txt"FIND_CAMITK_USER_DIR_LAST_INSTALL) endif() find_program(CAMITK_CONFIG_EXECUTABLE NAMES camitk-config-debug camitk-config PATH_SUFFIXES"bin"PATHS"$
Definition: FindCamiTK.cmake:80
std::string getBatchFile()
get path to batch file
std::string ansysPath
Ansys binary.
Definition: AnsysSimulator.h:67
virtual void createPml(const char *inputFile, const char *pmlFile)
Create a pml file from an imput file.
void getPosition(int index, double position[3])
get current position for one atom (use parameters)
AnsysBatch * batch
Ansys batch file creator.
Definition: AnsysSimulator.h:71
string(REGEX REPLACE"^.*-(.*)-.*""\\1"ARCH"${CAMITK_CONTINUOUS_INTEGRATION}") string(REGEX REPLACE"^.*-.*-(.*)""\\1"BUILDTYPE"$
Definition: continuous.cmake:34
void runAnsys()
start ansys with created batch file
void init()
initialize simulator
std::string workingDir
Ansys working dir.
Definition: AnsysSimulator.h:69
Simulator class to use Ansys as simulation engine.
Definition: AnsysSimulator.h:40