-
Notifications
You must be signed in to change notification settings - Fork 0
/
td.h
51 lines (45 loc) · 1.64 KB
/
td.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
* File: td.h
* Author: zhakov
*
* Created on 26 Сентябрь 2012 г., 23:08
*/
#ifndef TD_H
#define TD_H
class td {
public:
td(int N, float dimensity, float Eps, float RhoSqr, float tau);
td(const td& orig);
virtual ~td();
int initMatrix();
int solve();
int printMatrix(float ***matrix);
int printMatrixToFile(char *path);
int enableDebugMode(unsigned step);
int disableDebugMode();
int getIterationsCount();
private:
float ***solution;
float ***tempSolution;
float xStep; //Шаг по x
float yStep; //Шаг по y
float zStep; //Шаг по z
int N; //Количество шагов
float Eps; //Точность вычислений
float RhoSqr; //ро квадрат
float h; //Шаг по координате
float tau; //Шаг по времени
int iterationsCount; //Счётчик количества итераций
float dimencity; //Длина ребра куба
bool debugMode; //Включение отладки
unsigned debugStep; //Шаг вывода для отладки
unsigned maxIterations; //Максимальное количество итераций
int boundaryCalculate(float ***matrix); //Подсчёт значений на границах
float t0yz(float t, int y, int z, float*** matrix);
float tNyz(float t, int y, int z, float*** matrix);
float tx0z(float t, int x, int z, float*** matrix);
float txNz(float t, int x, int z, float*** matrix);
float txy0(float t, int x, int y, float*** matrix);
float txyN(float t, int x, int y, float*** matrix);
};
#endif /* TD_H */