-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
273 lines (104 loc) · 3.41 KB
/
main.cpp
File metadata and controls
273 lines (104 loc) · 3.41 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
#include <cmath>
#include "spa.h"
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <algorithm>
#include <iomanip>
#include <chrono>
#include <regex>
using namespace std;
int aktuelle_stunde = -1;
double top_score = -1;
int top_zeit = -1;
string ki_vorschlaege_durchschnts_zeiten;
int jahr = -1;
int monat = -1;
int tag = -1;
double longitude;
double latitude;
double azimut_soll;
double azimut_ist;
string azimut_uhrzeit;
vector<double> bewolkung_vec;
vector<double> diffuse_radiation;
vector<string> ai_models_vec;
string ai_models;
vector<string> ai_models_vorschlag;
vector<double> score_vec;
int main(int argc, char *argv[])
{
auto jetzt = std::chrono::system_clock::now();
time_t zeit = std::chrono::system_clock::to_time_t(jetzt);
tm* lokal = std::localtime(&zeit);
aktuelle_stunde = lokal->tm_hour;
jahr = atoi(argv[1]);
monat = atoi(argv[2]);
tag = atoi(argv[3]);
longitude = stod(argv[4]);
latitude = stod(argv[5]);
azimut_soll = stod(argv[6]);
void sonnen_position();
sonnen_position();
void wetter_daten();
wetter_daten();
void photovoltaic_forecast();
photovoltaic_forecast();
ai_models_vec = { "llama-3.3-70b-versatile", "llama-3.1-8b-instant", "gemma2-9b-it", "moonshotai/kimi-k2-instruct",};
for (int i = 0; i < ai_models_vec.size() ; i++)
{
ai_models = ai_models_vec[i];
void groq_ai();
groq_ai();
}
vector<string> ki_uhrzeit_vorschlag;
for (int i = 0; i < ai_models_vorschlag.size(); i++)
{
std::regex pattern(R"(([01]?[0-9]|2[0-3]):[0-5][0-9])");
auto words_begin = std::sregex_iterator(ai_models_vorschlag[i].begin(), ai_models_vorschlag[i].end(), pattern);
auto words_end = std::sregex_iterator();
for (std::sregex_iterator i = words_begin; i != words_end; ++i)
{
std::smatch match = *i;
ki_uhrzeit_vorschlag.push_back(match.str());
}
}
int wo_ist_doppelpunkt = -1;
int ki_uhrzeit_stunde = -1;
int ki_uhrzeit_minute = -1;
double durchnitszeit = -1;
for (int i = 0; i < ki_uhrzeit_vorschlag.size(); i++)
{
wo_ist_doppelpunkt = ki_uhrzeit_vorschlag[i].find(":" );
ki_uhrzeit_stunde = stoi(ki_uhrzeit_vorschlag[i].substr(0 , wo_ist_doppelpunkt));
ki_uhrzeit_minute = stoi(ki_uhrzeit_vorschlag[i].substr(wo_ist_doppelpunkt + 1, ki_uhrzeit_vorschlag[i].length()));
durchnitszeit = durchnitszeit + ((ki_uhrzeit_stunde*60)+ki_uhrzeit_minute);
}
durchnitszeit = durchnitszeit / ki_uhrzeit_vorschlag.size();
durchnitszeit = durchnitszeit / 60;
double stunden;
double minutenDezimal = modf(durchnitszeit, &stunden) * 60;
int minuten = static_cast<int>(round(minutenDezimal));
cout<<"Beste Solarenergie nach KI Vorschlag um "<<stunden<<":"<<minuten<<" Uhr"<<endl;
ki_vorschlaege_durchschnts_zeiten.append(to_string((int)stunden) + ":" + to_string((int)minuten));
void scoring();
scoring();
for (int i = 0; i < score_vec.size(); i++)
{
if (top_score < score_vec[i])
{
top_score = score_vec[i];
top_zeit = i;
}
}
cout<<"Beste Solarenergie nach lokalen Alghriothmus Vorschlag um "<<top_zeit<<" Uhr"<<endl;
/*
void write_to_db();
write_to_db();
*/
return(0);
}