Computer Assited Medical Intervention Tool Kit  version 5.0
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-2021 Univ. Grenoble Alpes, CNRS, Grenoble INP, TIMC, 38000 Grenoble, France
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 
32 #include "AnsysBatch.h"
33 
41 
42 public:
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);
63  std::string getBatchFile();
64 
65 private:
67  std::string ansysPath;
69  std::string workingDir;
72 
74  void runAnsys();
75 
76 };
77 
78 #endif // SIMULATOR_SIMULATORS_ANSYS_ANSYSSIMULATOR_H
SimulatorFactory
A factory to create Simulator.
Definition: SimulatorFactory.h:40
AnsysSimulator::runAnsys
void runAnsys()
start ansys with created batch file
Definition: AnsysSimulator.cpp:113
AnsysSimulator::end
void end()
end simultor
Definition: AnsysSimulator.cpp:83
AnsysSimulator::~AnsysSimulator
~AnsysSimulator()
destructor
Definition: AnsysSimulator.cpp:68
AnsysBatch::getFileName
std::string getFileName()
return batch file's name
Definition: AnsysBatch.cpp:110
AnsysSimulator::getMaxStep
int getMaxStep()
get the number of steps after simulation
Definition: AnsysSimulator.cpp:156
AnsysSimulator::createPml
virtual void createPml(const char *inputFile, const char *pmlFile)
Create a pml file from an imput file.
Definition: AnsysSimulator.cpp:98
MonitoringManager::getCurrentStep
double getCurrentStep()
Definition: MonitoringManager.cpp:242
AnsysWidget.h
MML_DECL_CLASS
#define MML_DECL_CLASS(name)
needed in files to register into factories (because of static lib and windows linking problems)
Definition: Macros.h:31
AnsysSimulator::init
void init()
initialize simulator
Definition: AnsysSimulator.cpp:75
AnsysWidget
TODO Comment class here.
Definition: AnsysWidget.h:42
AnsysBatch::write
void write()
write entire batch file if file do not exist
Definition: AnsysBatch.cpp:65
ansysRegistered
bool ansysRegistered
Definition: AnsysSimulator.cpp:42
AnsysSimulator::AnsysSimulator
AnsysSimulator(MonitoringManager *monitoringManager)
constructor
Definition: AnsysSimulator.cpp:45
AnsysSimulator::getTime
double getTime(int step)
get the time of simulation of a given step
Definition: AnsysSimulator.cpp:167
AnsysSimulator::doCalc
bool doCalc()
make entire simulation ans store results of all step
Definition: AnsysSimulator.cpp:105
AnsysSimulator
Simulator class to use Ansys as simulation engine.
Definition: AnsysSimulator.h:40
Simulator::monitoringManager
MonitoringManager * monitoringManager
monitoring manager
Definition: Simulator.h:107
AnsysBatch.h
AnsysSimulator::getForce
void getForce(int index, double force[3])
get current force for one atom
Definition: AnsysSimulator.cpp:150
AnsysSimulator::ansysPath
std::string ansysPath
Ansys binary.
Definition: AnsysSimulator.h:90
MonitoringManager
Manager of the benchmark tests. Do simulation loop and tests.
Definition: MonitoringManager.h:50
AnsysBatch
Ansys batch file handler.
Definition: AnsysBatch.h:44
AnsysSimulator::getPosition
void getPosition(int index, double position[3])
get current position for one atom (use parameters)
Definition: AnsysSimulator.cpp:119
AnsysSimulator::getBatchFile
std::string getBatchFile()
get path to batch file
Definition: AnsysSimulator.cpp:180
NonInteractiveSimulator.h
AnsysSimulator::batch
AnsysBatch * batch
Ansys batch file creator.
Definition: AnsysSimulator.h:94
NonInteractiveSimulator
An interactive simulator is a simulator that we cannot control step by step (ex: Ansys) Entire simula...
Definition: NonInteractiveSimulator.h:38
AnsysSimulator::workingDir
std::string workingDir
Ansys working dir.
Definition: AnsysSimulator.h:92