This repository has been archived by the owner on Jan 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmain.cpp
93 lines (87 loc) · 2.68 KB
/
main.cpp
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#include <iostream>
#include <cmath>
using namespace std;
const double A = 1, B_L = 0.05, B_noL = 0.000001, C = 0.05, D = 0.005; // Создаем константы // B_L - линейная, B_noL - нелинейная
// Создаем линейную модель
// y_t - начальная температура, f_t - теплота (изменение температуры), time - количество времени
double Linear(double y_t, double f_t, int time)
{
while (time >= 0)
{
return A * y_t + B_L * f_t;
}
return 0;
}
// Создаем нелинейную модель
// y_t - начальная температура, f_t - теплота (изменение температуры), prev_y_t - значение температуры в предыдущий момент времени, time - количество времени
double NonLinear(double y_t, double f_t, double prev_y_t, int time)
{
while (time >= 0)
{
return A * y_t - B_noL * pow(prev_y_t, 2) + C * f_t + D * sin(f_t);
}
return 0;
}
int main()
{
setlocale(LC_ALL, "");
double y_t, f_t, prev_y_t, time;
Begin:
int choice;
cout << "1. Линейная модель" << endl;
cout << "2. Нелинейная модель" << endl;
cout << "Какую из модель выполнить? (1 или 2):" << endl;
cin >> choice;
switch (choice)
{
case 1:
cout << "Введите начальное значение температуры: ";
cin >> y_t;
cout << "Введите значение теплоты: ";
cin >> f_t;
cout << "Введите количество итераций: ";
cin >> time;
if (time > 0)
{
for (int i = 0; i < time; i++)
{
y_t = Linear(y_t, f_t, time);
cout << y_t << endl;
}
}
else
{
cout << "Некорректный ввод" << endl;
goto Begin;
}
break;
case 2:
cout << "Введите начальное значение температуры: ";
cin >> y_t;
cout << "Введите начальное значение теплоты: ";
cin >> f_t;
cout << "Введите количество итераций: ";
cin >> time;
prev_y_t = 0;
if (time > 0)
{
for (int i = 0; i < time; i++)
{
double fb = y_t; //переменная для записи в prev_y_t
y_t = NonLinear(y_t, f_t, prev_y_t, time);
cout << y_t << endl;
prev_y_t += fb;
}
}
else
{
cout << "Некорректный ввод" << endl;
goto Begin;
}
break;
default:
cout << "Ошибка, некорректный ввод" << endl;
goto Begin;
break;
}
}