Computer Assited Medical Intervention Tool Kit  version 5.0
ArtiSynthSimulator.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_ARTISYNTHSIMULATOR_H
27 #define SIMULATOR_SIMULATORS_ANSYS_ARTISYNTHSIMULATOR_H
28 
29 #include <string>
30 
40 
41 public:
46 
49 
50  void init();
51  void end();
52  void getPosition(int index, double position[3]);
53  void getForce(int index, double force[3]);
54 
55  bool doCalc();
56  int getMaxStep();
57  double getTime(int step);
58 
60  virtual void createPml(const char* inputFile, const char* pmlFile);
61 
62 private:
64  std::string artisynthPath;
66  std::string workingDir;
67 
69  void runArtisynth();
70 
71 };
72 
73 #endif // SIMULATOR_SIMULATORS_ANSYS_ARTISYNTHSIMULATOR_H
SimulatorFactory
A factory to create Simulator.
Definition: SimulatorFactory.h:40
ArtiSynthSimulator.h
ArtisynthSimulator::workingDir
std::string workingDir
Artisynth working dir.
Definition: ArtiSynthSimulator.h:89
ArtisynthSimulator::doCalc
bool doCalc()
make entire simulation ans store results of all step
Definition: ArtiSynthSimulator.cpp:79
ArtisynthSimulator
Simulator class to use Artisynth as simulation engine.
Definition: ArtiSynthSimulator.h:39
MonitoringManager::getPml
PhysicalModel * getPml()
Definition: MonitoringManager.cpp:263
MonitoringManager::getCurrentStep
double getCurrentStep()
Definition: MonitoringManager.cpp:242
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
artisynthRegistered
bool artisynthRegistered
Definition: ArtiSynthSimulator.cpp:38
ArtisynthSimulator::artisynthPath
std::string artisynthPath
Artisynth binary.
Definition: ArtiSynthSimulator.h:87
ArtisynthSimulator::init
void init()
initialize simulator
Definition: ArtiSynthSimulator.cpp:61
ArtisynthSimulator::getForce
void getForce(int index, double force[3])
get current force for one atom
Definition: ArtiSynthSimulator.cpp:127
ArtisynthSimulator::createPml
virtual void createPml(const char *inputFile, const char *pmlFile)
Create a pml file from an imput file.
Definition: ArtiSynthSimulator.cpp:72
Simulator::monitoringManager
MonitoringManager * monitoringManager
monitoring manager
Definition: Simulator.h:107
SimulatorFactory.h
PhysicalModel::exportAnsysMesh
void exportAnsysMesh(std::string filename)
Save the mesh (atoms/cells) of this PhysicalModel in the Ansys format.
Definition: PhysicalModel.cpp:747
MonitoringManager
Manager of the benchmark tests. Do simulation loop and tests.
Definition: MonitoringManager.h:50
ArtisynthSimulator::~ArtisynthSimulator
~ArtisynthSimulator()
destructor
Definition: ArtiSynthSimulator.cpp:57
ArtisynthSimulator::ArtisynthSimulator
ArtisynthSimulator(MonitoringManager *monitoringManager)
constructor
Definition: ArtiSynthSimulator.cpp:41
NonInteractiveSimulator.h
ArtisynthSimulator::runArtisynth
void runArtisynth()
start Artisynth calculations
Definition: ArtiSynthSimulator.cpp:85
ArtisynthSimulator::getTime
double getTime(int step)
get the time of simulation of a given step
Definition: ArtiSynthSimulator.cpp:144
ArtisynthSimulator::end
void end()
end simultor
Definition: ArtiSynthSimulator.cpp:68
ArtisynthSimulator::getPosition
void getPosition(int index, double position[3])
get current position for one atom (use parameters)
Definition: ArtiSynthSimulator.cpp:96
NonInteractiveSimulator
An interactive simulator is a simulator that we cannot control step by step (ex: Ansys) Entire simula...
Definition: NonInteractiveSimulator.h:38
ArtisynthSimulator::getMaxStep
int getMaxStep()
get the number of steps after simulation
Definition: ArtiSynthSimulator.cpp:133