VM2D  1.12
Vortex methods for 2D flows simulation
WorldGen.cpp
Go to the documentation of this file.
1 /*--------------------------------*- VMlib -*----------------*---------------*\
2 | ## ## ## ## ## ## ## | | Version 1.12 |
3 | ## ## ### ### ## ## | VMlib: VM2D/VM3D Library | 2024/01/14 |
4 | ## ## ## # ## ## ## #### | Open Source Code *----------------*
5 | #### ## ## ## ## ## ## | https://www.github.com/vortexmethods/VM2D |
6 | ## ## ## #### ### #### | https://www.github.com/vortexmethods/VM3D |
7 | |
8 | Copyright (C) 2017-2024 Ilia Marchevsky |
9 *-----------------------------------------------------------------------------*
10 | File name: WorldGen.cpp |
11 | Info: Source code of VMlib |
12 | |
13 | This file is part of VMlib. |
14 | VMLib is free software: you can redistribute it and/or modify it |
15 | under the terms of the GNU General Public License as published by |
16 | the Free Software Foundation, either version 3 of the License, or |
17 | (at your option) any later version. |
18 | |
19 | VMlib is distributed in the hope that it will be useful, but WITHOUT |
20 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
21 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
22 | for more details. |
23 | |
24 | You should have received a copy of the GNU General Public License |
25 | along with VMlib. If not, see <http://www.gnu.org/licenses/>. |
26 \*---------------------------------------------------------------------------*/
27 
28 
37 #include "WorldGen.h"
38 
39 #include "PassportGen.h"
40 
41 using namespace VMlib;
42 
43 //Конструктор
45  passportGen(passport_)
46 { };
47 
48 //Функция, возвращающая признак завершения счета в решаемой задаче
49 bool WorldGen::isFinished() const //Проверка условия, что счет завершен
50 {
52 }//isFinished()
Заголовочный файл с описанием класса PasportGen.
double timeStop
Конечное время
Definition: PassportGen.h:62
Заголовочный файл с описанием класса WorldGen.
double currTime
Текущее время
Definition: PassportGen.h:56
bool isFinished() const
Функция, возвращающая признак завершения счета в решаемой задаче
Definition: WorldGen.cpp:49
WorldGen(const VMlib::PassportGen &passport_)
Конструктор
Definition: WorldGen.cpp:44
TimeDiscretizationProperties timeDiscretizationProperties
Структура с параметрами процесса интегрирования по времени
Definition: PassportGen.h:127
const PassportGen & passportGen
Константная ссылка на паспорт конкретного расчета
Definition: WorldGen.h:62
Абстрактный класс, опеделяющий паспорт задачи
Definition: PassportGen.h:91