VM2D  1.12
Vortex methods for 2D flows simulation
VM2D.cpp File Reference

Основной файл программы VM2D. More...

#include "Queue.h"
Include dependency graph for VM2D.cpp:

Go to the source code of this file.

Functions

void CreateMpiTypes ()
 
void Initializers ()
 
int main (int argc, char **argv)
 

Detailed Description

Основной файл программы VM2D.

Author
Марчевский Илья Константинович
Сокол Ксения Сергеевна
Рятина Евгения Павловна
Колганова Александра Олеговна 1.12
Date
14 января 2024 г.

Definition in file VM2D.cpp.

Function Documentation

void CreateMpiTypes ( )

Definition at line 55 of file VM2D.cpp.

56 {
57  //Vortex2D::CreateMpiType();
58  //Point2D::CreateMpiType();
59 }

Here is the caller graph for this function:

void Initializers ( )

Definition at line 61 of file VM2D.cpp.

62 {
63 
64 }

Here is the caller graph for this function:

int main ( int  argc,
char **  argv 
)

Definition at line 67 of file VM2D.cpp.

68 {
69  Initializers();
70 
71  Queue queue(argc, argv, CreateMpiTypes);
72 
73  queue.LoadTasksList("problems", "mechanics", "defaults", "switchers");
74 
75  do
76  {
77  queue.TaskSplit();
78 
79  queue.RunConveyer();
80 
81  queue.TaskUpdate();
82  }
83  while (queue.nextKvant);
84 
85  //cin.get();
86 }
Класс, опеделяющий список решаемых задач и очередь их прохождения
Definition: Queue.h:72
void Initializers()
Definition: VM2D.cpp:61
void CreateMpiTypes()
Definition: VM2D.cpp:55

Here is the call graph for this function: