 |
Computer Assited Medical Intervention Tool Kit
version 4.1
|
Go to the documentation of this file.
26 #ifndef SIMULATOR_NONINTERACTIVESIMULATOR_H
27 #define SIMULATOR_NONINTERACTIVESIMULATOR_H
52 void getPosition(
int index,
double position[3]) = 0;
59 virtual double getTime(
int step) = 0;
64 void createPml(
const char* inputFile,
const char* pmlFile) = 0;
70 #endif // SIMULATOR_NONINTERACTIVESIMULATOR_H
void createPml(const char *inputFile, const char *pmlFile)=0
Create a pml file from an imput file.
virtual bool doCalc()=0
make entire simulation ans store results of all step
NonInteractiveSimulator(MonitoringManager *monitoringManager)
constructor
Definition: NonInteractiveSimulator.cpp:28
void getPosition(int index, double position[3])=0
get current position for one atom (use parameters)
A simulator engine is used to compute the displacements of all atoms of the model.
Definition: Simulator.h:45
MonitoringManager * monitoringManager
monitoring manager
Definition: Simulator.h:105
~NonInteractiveSimulator() override=default
destructor
Manager of the benchmark tests. Do simulation loop and tests.
Definition: MonitoringManager.h:49
virtual int getMaxStep()=0
get the number of steps after simulation
virtual double getTime(int step)=0
get the time of simulation of a given step
void init()=0
initialize simulator
An interactive simulator is a simulator that we cannot control step by step (ex: Ansys) Entire simula...
Definition: NonInteractiveSimulator.h:37