Оптимизация пространства

This commit is contained in:
Anton Kamalov
2025-05-15 01:19:28 +03:00
parent 517c551bf5
commit 8811ca5344
4 changed files with 19 additions and 29 deletions

View File

@@ -17,7 +17,7 @@
#define HOLE_Y 255.
#define HOLE_RADIUS 50.
#define CONDUCTIVITY 50. // Теплопроводность материала
#define CONDUCTIVITY 90. // Теплопроводность материала
void visualize(std::ofstream& file, std::string filename, int time_end) {
file << "set cbrange [" << 0 << ":" << 100 << "]" << std::endl;
@@ -36,12 +36,12 @@ int main()
3 - конвекция
4 - отсутствует
*/
int left = 3;
int top = 1;
int right = 3;
int bottom = 1;
int left = 1;
int top = 3;
int right = 1;
int bottom = 3;
int arc_bound = 3;
int hole_bound = 1;
int hole_bound = 2;
double step_5 = 5;
double step_10 = 10;