-
Notifications
You must be signed in to change notification settings - Fork 0
/
vo2max
774 lines (635 loc) · 21.5 KB
/
vo2max
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
// Arreglos de datos
float vo2_data[100];
float ve_data[100];
float vco2_data[100];
float time_data[100];
//Wasserman Method - VO2 vs Intensity Inflexion Point
void calculateVO2Wasserman(float intensity[], float VO2[], int length, float& VT1, float& VT2) {
float maxVO2 = 0.0;
int inflexionIndex = 0;
// Encontrar el índice de inflexión de la curva VO2 vs Intensity
for (int i = 1; i < length - 1; i++) {
if (VO2[i] > VO2[i - 1] && VO2[i] > VO2[i + 1]) {
inflexionIndex = i;
break;
}
}
// Calcular el VO2 máximo como el valor más alto antes del punto de inflexión
for (int i = 0; i < inflexionIndex; i++) {
if (VO2[i] > maxVO2) {
maxVO2 = VO2[i];
}
}
// Calcular VT1 y VT2 basados en el punto de inflexión
VT1 = intensity[inflexionIndex] * 0.5;
VT2 = intensity[inflexionIndex] * 0.7;
}
#include <Eigen/Dense>
// Función objetivo para el ajuste de regresión no lineal
Eigen::VectorXd objectiveFunction(const Eigen::VectorXd& x, const Eigen::VectorXd& intensity) {
// Modelo de regresión no lineal según el modelo de Beaver
Eigen::VectorXd y(x.size());
for (int i = 0; i < x.size(); i++) {
// Ajusta aquí la ecuación del modelo de Beaver
y(i) =/* Ajusta la ecuación del modelo de Beaver */;
}
return y;
}
void calculateVO2Beaver(float intensity[], float VO2[], int length, float& VT1, float& VT2) {
// Crear matrices y vectores utilizando la biblioteca Eigen
Eigen::VectorXd x(length);
Eigen::VectorXd y(length);
for (int i = 0; i < length; i++) {
x(i) = intensity[i];
y(i) = VO2[i];
}
// Definir el tamaño del vector de parámetros y la función objetivo
int numParams = /* Ajusta el número de parámetros del modelo */;
Eigen::VectorXd params(numParams);
// Realizar el ajuste de regresión no lineal utilizando mínimos cuadrados no lineales
// Aquí deberías utilizar un método de ajuste adecuado de la biblioteca Eigen, como Levenberg-Marquardt
// Consulta la documentación de Eigen para obtener más información sobre los métodos de ajuste disponibles
// Obtener los valores estimados de VT1 y VT2 a partir de los parámetros ajustados
VT1 = /* Obtener el valor estimado de VT1 desde los parámetros ajustados */;
VT2 = /* Obtener el valor estimado de VT2 desde los parámetros ajustados */;
}
float calculateSlope(float x[], float y[], int start, int end) {
// Calculation of slope using least squares
float sumXY = 0;
float sumX = 0;
float sumY = 0;
float sumX2 = 0;
for (int i = start; i < end; i++) {
sumXY += x[i] * y[i];
sumX += x[i];
sumY += y[i];
sumX2 += x[i] * x[i];
}
float slope = (end - start) * (sumXY - (sumX * sumY) / (end - start)) / (sumX2 - (sumX * sumX) / (end - start));
return slope;
}
void calculateVT1VT2Dickhuth(float VO2[], float VCO2[], int length, float& VT1, float& VT2) {
// Calculate the slope of VO2 and VCO2
float slopeVO2 = calculateSlope(VO2, VO2, 0, length);
float slopeVCO2 = calculateSlope(VCO2, VCO2, 0, length);
// Find the point of maximum acceleration
float maxAcceleration = 0;
int maxAccelerationIndex = 0;
for (int i = 1; i < length - 1; i++) {
float acceleration = (VO2[i + 1] - VO2[i - 1]) / 2 + (VCO2[i + 1] - VCO2[i - 1]) / 2;
if (acceleration > maxAcceleration) {
maxAcceleration = acceleration;
maxAccelerationIndex = i;
}
}
// Calculate VT1 and VT2
VT1 = VO2[maxAccelerationIndex];
VT2 = VO2[length - 1];
}
void setup() {
// Aquí puedes inicializar y configurar tu dispositivo si es necesario
}
void loop() {
// Datos de prueba
float intensity[] = {1.0, 2.0, 3.0, 4.0, 5.0};
float VO2[] = {10.0, 20.0, 30.0, 40.0, 50.0};
float VCO2[] = {5.0, 10.0, 15.0, 20.0, 25.0};
int length = sizeof(intensity)/ sizeof(intensity[0]);
// Variables para almacenar los valores estimados de VT1 y VT2
float VT1, VT2;
// Realizar el cálculo de VO2 utilizando el método de Beaver
calculateVO2Beaver(intensity, VO2, length, VT1, VT2);
// Imprimir los resultados
Serial.begin(9600);
Serial.print("VT1: ");
Serial.println(VT1);
Serial.print("VT2: ");
Serial.println(VT2);
// Realizar el cálculo de VT1 y VT2 utilizando el método de Dickhuth
calculateVT1VT2Dickhuth(VO2, VCO2, length, VT1, VT2);
// Imprimir los resultados
Serial.print("VT1: ");
Serial.println(VT1);
Serial.print("VT2: ");
Serial.println(VT2);
// Esperar un tiempo antes de repetir el cálculo
delay(1000);
}
// Dickhuth Method - Maximum acceleration between VO2 and VCO2 measured in 5-second intervals
void calculateVO2Dickhuth(float VO2[], float VCO2[], int length, float& VT1, float& VT2) {
float maxAcceleration = 0.0;
int maxAccelerationIndex = 0;
// Calcular la aceleración máxima entre VO2 y VCO2 en intervalos de 5 segundos
for (int i = 2; i < length - 2; i++) {
float acceleration = (VO2[i + 2] + VCO2[i + 2] - 2 * VO2[i] - 2 * VCO2[i] + VO2[i - 2] + VCO2[i - 2]) / 5.0;
if (acceleration > maxAcceleration) {
maxAcceleration = acceleration;
maxAccelerationIndex = i;
}
}
// Obtener los valores de VT1 y VT2 correspondientes a la máxima aceleración
VT1 = VO2[maxAccelerationIndex] * 0.5;
VT2 = VO2[maxAccelerationIndex] * 0.7;
}
// Method Función para calcular pendiente
float calculateSlope(float x[], float y[], int start, int end) {
// Cálculo de pendiente usando mínimos cuadrados
float sumXY = 0;
float sumX = 0;
float sumY = 0;
float sumX2 = 0;
for (int i = start; i < end; i++) {
sumXY += x[i] * y[i];
sumX += x[i];
sumY += y[i];
sumX2 += x[i] * x[i];
}
float slope = (end - start) * (sumXY - (sumX * sumY) / (end - start)) / (sumX2 - (sumX * sumX) / (end - start));
return slope;
}
void calcularUmbrales() {
int length = sizeof(VO2_data) / sizeof(VO2_data[0]);
float slope1 = 0.0;
float slope2 = 0.0;
int VT1_index = 0;
for (int i = 0; i < length; i++) {
slope1 = calculateSlope(VO2_data, VCO2_data, 0, i);
if (slope1 != slope2) {
VT1 = VO2_data[i];
VT1_index = i; // Actualizar el índice de VT1
break; // Terminar el bucle una vez que se encuentra el cambio de pendiente
}
}
for (int j = VT1_index; j < length; j++) {
slope2 = calculateSlope(VO2_data, VCO2_data, VT1_index, j);
if (slope1 != slope2) {
VT2 = VO2_data[j];
break; // Terminar el bucle una vez que se encuentra el cambio de pendiente
}
}
}
//En la función calculateSlope(), se realiza el cálculo de la pendiente utilizando el método de mínimos cuadrados. Se suman los productos x[i] * y[i], los valores de x[i], y[i], y x[i] * x[i] dentro del rango especificado (start y end). Luego, se utiliza la fórmula de la pendiente para calcular el valor y se retorna.
// Nuevas variables
float VT1, VT1_time;
float VT2, VT2_time;
void calcularVT(){
// Calcular VT1
float slope1 = calculateSlope(VE_data, VO2_data, 0, time1);
VT1 = VO2_data[time1];
VT1_time = time1;
// Calcular VT2
float slope2 = calculateSlope(VO2_data, CO2_data, VT1_time, time2);
VT2 = VO2_data[time2];
VT2_time = time2;
}
void showScreen(){
if(screenNr == 8){
// Mostrar VT1
tft.drawString("VT1:", 0,0);
tft.drawString(VT1, 50,0);
tft.drawString(VT1_time, 100,0);
// Mostrar VT2
tft.drawString("VT2:", 0,20);
tft.drawString(VT2, 50,20);
tft.drawString(VT2_time, 100,20);
// Mostrar %VT1 y %VT2 respecto VO2max
tft.drawString("%VT1:", 0,40);
tft.drawString(calculatePercentage(VT1), 50,40);
}
}
void loop() {
// Llenar arrays con datos simulados de VO2 y VCO2
populateDataArrays();
// Calcular pendiente del aumento de VO2 vs VCO2 entre cada umbral
float slope1 = calculateSlope(VO2_data, VCO2_data, 0, VT1_index);
float slope2 = calculateSlope(VO2_data, VCO2_data, VT1_index, VT2_index);
// Mostrar resultados por monitor serial
Serial.println("Umbrales ventilatorios:");
Serial.print("VT1: ");
Serial.println(VT1);
Serial.print("VT2: ");
Serial.println(VT2);
}
// Method Función para calcular pendiente entre 2 puntos
//En la función calcularUmbrales(), se inicializan las variables necesarias, como slope1, slope2, VT1, VT1_index, y length. Luego, se realiza un bucle para calcular la pendiente entre los datos de VO2 y VCO2 utilizando la función calculateSlope(). Si hay un cambio de pendiente, se asigna el valor correspondiente a VT1 y se actualiza el índice de VT1 (VT1_index). El bucle se detiene una vez que se encuentra el cambio de pendiente utilizando la declaración break.
//Después, se realiza otro bucle a partir del índice de VT1 hasta el final de los datos para calcular la pendiente utilizando la función calculateSlope(). Si hay un cambio de pendiente, se asigna el valor correspondiente a VT2. El bucle se detiene una vez que se encuentra el cambio de pendiente utilizando la declaración break.
// Beaver Method - Non-linear regression model for VO2 vs Intensity curve
#include <Eigen/Dense>
// Función objetivo para el ajuste de regresión no lineal
Eigen::VectorXd objectiveFunction(const Eigen::VectorXd& x, const Eigen::VectorXd& intensity) {
// Modelo de regresión no lineal según el modelo de Beaver
Eigen::VectorXd y(x.size());
for (int i = 0; i < x.size(); i++) {
// Ajusta aquí la ecuación del modelo de Beaver
y(i) = /* Ajusta la ecuación del modelo de Beaver */;
}
return y;
}
void calculateVO2Beaver(float intensity[], float VO2[], int length, float& VT1, float& VT2) {
// Crear matrices y vectores utilizando la biblioteca Eigen
Eigen::VectorXd x(length);
Eigen::VectorXd y(length);
for (int i = 0; i < length; i++) {
x(i) = intensity[i];
y(i) = VO2[i];
}
// Definir el tamaño del vector de parámetros y la función objetivo
int numParams = /* Ajusta el número de parámetros del modelo */;
Eigen::VectorXd params(numParams);
// Realizar el ajuste de regresión no lineal utilizando mínimos cuadrados no lineales
// Aquí deberías utilizar un método de ajuste adecuado de la biblioteca Eigen, como Levenberg-Marquardt
// Consulta la documentación de Eigen para obtener más información sobre los métodos de ajuste disponibles
// Obtener los valores estimados de VT1 y VT2 a partir de los parámetros ajustados
VT1 = /* Obtener el valor estimado de VT1 desde los parámetros ajustados */;
VT2 = /* Obtener el valor estimado de VT2 desde los parámetros ajustados */;
}
// Datos de prueba
float intensity[] = {1.0, 2.0, 3.0, 4.0, 5.0};
float VO2[] = {10.0, 20.0, 30.0, 40.0, 50.0};
int length = sizeof(intensity) / sizeof(intensity[0]);
// Variables para almacenar los valores estimados de VT1 y VT2
float VT1, VT2;
// Realizar el cálculo de VO2 utilizando el método de Beaver
calculateVO2Beaver(intensity, VO2, length, VT1, VT2);
// Imprimir los resultados
Serial.print("VT1: ");
Serial.println(VT1);
Serial.print("VT2: ");
Serial.println(VT2);
// Esperar un tiempo antes de repetir el cálculo
delay(1000);
}// Beaver Method - Non-linear regression model for VO2 vs Intensity curve
#include <Eigen/Dense>
// Función objetivo para el ajuste de regresión no lineal
Eigen::VectorXd objectiveFunction(const Eigen::VectorXd& x, const Eigen::VectorXd& intensity) {
// Modelo de regresión no lineal según el modelo de Beaver
Eigen::VectorXd y(x.size());
for (int i = 0; i < x.size(); i++) {
// Ajusta aquí la ecuación del modelo de Beaver
y(i) = /* Ajusta la ecuación del modelo de Beaver */;
}
return y;
}
void calculateVO2Beaver(float intensity[], float VO2[], int length, float& VT1, float& VT2) {
// Crear matrices y vectores utilizando la biblioteca Eigen
Eigen::VectorXd x(length);
Eigen::VectorXd y(length);
for (int i = 0; i < length; i++) {
x(i) = intensity[i];
y(i) = VO2[i];
}
// Definir el tamaño del vector de parámetros y la función objetivo
int numParams = /* Ajusta el número de parámetros del modelo */;
Eigen::VectorXd params(numParams);
// Realizar el ajuste de regresión no lineal utilizando mínimos cuadrados no lineales
// Aquí deberías utilizar un método de ajuste adecuado de la biblioteca Eigen, como Levenberg-Marquardt
// Consulta la documentación de Eigen para obtener más información sobre los métodos de ajuste disponibles
// Obtener los valores estimados de VT1 y VT2 a partir de los parámetros ajustados
VT1 = /* Obtener el valor estimado de VT1 desde los parámetros ajustados */;
VT2 = /* Obtener el valor estimado de VT2 desde los parámetros ajustados */;
}
// Calculates VT1 and VT2 using the Dickhuth method
void calcularUmbrales()
{
int length = sizeof(VO2_data) / sizeof(VO2_data[0]);
float
sumX += x[i];
sumY += y[i];
sumX2 += x[i] * x[i];
}
float slope = (end - start) * (sumXY - (sumX * sumY) / (end - start)) / (sumX2 - (sumX * sumX) / (end - start));
return slope1 = 0.0;
float slope2 = 0.0;
int VT1_index = 0;
for (int i = 0; i < length; i++)
{
slope1 = calculateSlope(VO2_data, VCO2_data, 0, i);
if (s slope;
}
// Calculates VT1 and VT2 using the Dickhuth method
void calcularUmbrales()
{
int length = sizeof(VO2_data) / sizeof(VO2_data[0]);
float slope1 = int end)
{
// Calculation of slope using least squares
float sumXY = 0;
float sumX = 0;
float sumY = 0;
float sumX2 = 0;
for (int i = start; i < end; i++)
{
sumXY += x[i] * y[i];
sumX += x[i];
sumY += y[i];
sumX2 += x[i] * x[i];
}
float slope = (end - start) * (sumXY - (sumX * sumY) / (end - start)) / (sumX2 - (sumX * sumX) / (end - start));
return slope;
}
// Calculates VT1 and VT2 using the Dickhuth method
void calcularUmbrales()
{
int length = sizeof(VO2_data) / sizeof(VO2_data[0]);
float slope1 = 0.0;
float slope0.0;
float slope2 = 0.0;
int VT1_index = 0;
for (int i = 0; i < length; i++)
{
slope1 = calculateSlope(VO2_data, VCO2_data, 0, i);
if (slope1 != slope2)
{
VT1 = VO2_data[i];
VT1_index = ilope1 != slope2)
{
VT1 = VO2_data[i];
VT1_index = i; // Update the VT1 index
break; // End the loop once the slope change is found
}
}
for (int j = VT1_index; j < length; j++)
{
slope2 = calculateSlope(VO2_data, VCO2_data, VT1_index, j);
if (slope1 != slope2)
{
VT2 = VO2_data[j];
break; // End the loop once the slope change is found
}
}
}
```; // Update the VT1 index
break; // End the loop once the slope change is found
}
}
for (int j = VT1_index; j < length; j++)
{
slope2 = calculateSlope(VO2_data, VCO2_data, VT1_index, j2 = 0.0;
int VT1_index = 0;
for (int i = 0; i < length; i++)
{
slope1 = calculateSlope(VO2_data, VCO2_data, 0, i);
if (slope1 != slope2)
{
VT1 = VO2_data[i];
VT1_index = i; // Update the VT1 index
break; // End the loop once the slope change is found
}
}
for (int j = VT1_index; j < length; j++)
{
slope2 = calculateSlope();
if (slope1 != slope2)
{
VT2 = VO2_data[j];
break; // End the loop once the slope change is found
}
}
}
```VO2_data, VCO2_data, VT1_index, j);
if (slope1 != slope2)
{
VT2 = VO2_data[j];
break; // End the loop once the slope change is found
}
}
}
```int end)
{
// Calculation of slope using least squares
float sumXY = 0;
float sumX = 0;
float sumY = 0;
float sumX2 = 0;
for (int i = start; i < end; i++)
{
sumXY += x[i] * y[i];
sumX += x[i];
sumY += y[i];
sumX2 += x[i] * x[i];
}
float slope = (end - start) * (sumXY - (sumX * sumY) / (end - start)) / (sumX2 - (sumX * sumX) / (end - start));
return slope;
}
// Calculates VT1 and VT2 using the Dickhuth method
void calcularUmbrales()
{
int length = sizeof(VO2_data) / sizeof(VO2_data[0]);
float slope1 = 0.0;
float slope2 = 0.0;
int VT1_index = 0;
for (int i = 0; i < length; i++)
{
slope1 = calculateSlope(VO2_data, VCO2_data, 0, i);
if (slope1 != slope2)
{
VT1 = VO2_data[i];
VT1_index = i; // Update the VT1 index
break; // End the loop once the slope change is found
}
}
for (int j = VT1_index; j < length; j++)
{
slope2 = calculateSlope(VO2_data, VCO2_data, VT1_index, j);
if (slope1 != slope2)
{
VT2 = VO2_data[j];
break; // End the loop once the slope change is found
}
}
}// Calculates the slope of a given array
float calculateSlope(float x[], float y[], int start,int end)
{
// Calculation of slope using least squares
float sumXY = 0;
float sumX = 0;
float sumY = 0;
float sumX2 = 0;
for (int i = start; i < end; i++)
{
sumXY += x[i] * y[i];
sumX += x[i];
sumY += y[i];
sumX2 += x[i] * x[i];
}
float slope = (end - start) * (sumXYint end)
{
// Calculation of slope using least squares
float sumXY = 0;
float sumX = 0;
float sumY = 0;
float sumX2 = 0;
for (int i = start; i < end; i++)
{
sumXY += x[i] * y[i]; - (sumX * sumY) / (end - start)) / (sumX2 - (sumX * sumX) / (end - start));
return slope;
}
// Calculates VT1 and VT2 using the Dickhuth method
void calcularUmbrales()
{
int length = sizeof(VO2_data) / sizeof(VO2_data[0]);
float
sumX += x[i];
sumY += y[i];
sumX2 += x[i] * x[i];
}
float slope = (end - start) * (sumXY - (sumX * sumY) / (end - start)) / (sumX2 - (sumX * sumX) / (end - start));
return slope1 = 0.0;
float slope2 = 0.0;
int VT1_index = 0;
for (int i = 0; i < length; i++)
{
slope1 = calculateSlope(VO2_data, VCO2_data, 0, i);
if (s slope;
}
// Calculates VT1 and VT2 using the Dickhuth method
void calcularUmbrales()
{
int length = sizeof(VO2_data) / sizeof(VO2_data[0]);
float slope1 = int end)
{
// Calculation of slope using least squares
float sumXY = 0;
float sumX = 0;
float sumY = 0;
float sumX2 = 0;
for (int i = start; i < end; i++)
{
sumXY += x[i] * y[i];
sumX += x[i];
sumY += y[i];
sumX2 += x[i] * x[i];
}
float slope = (end - start) * (sumXY - (sumX * sumY) / (end - start)) / (sumX2 - (sumX * sumX) / (end - start));
return slope;
}
// Calculates VT1 and VT2 using the Dickhuth method
void calcularUmbrales()
{
int length = sizeof(VO2_data) / sizeof(VO2_data[0]);
float slope1 = 0.0;
float slope0.0;
float slope2 = 0.0;
int VT1_index = 0;
for (int i = 0; i < length; i++)
{
slope1 = calculateSlope(VO2_data, VCO2_data, 0, i);
if (slope1 != slope2)
{
VT1 = VO2_data[i];
VT1_index = ilope1 != slope2)
{
VT1 = VO2_data[i];
VT1_index = i; // Update the VT1 index
break; // End the loop once the slope change is found
}
}
for (int j = VT1_index; j < length; j++)
{
slope2 = calculateSlope(VO2_data, VCO2_data, VT1_index, j);
if (slope1 != slope2)
{
VT2 = VO2_data[j];
break; // End the loop once the slope change is found
}
}
}
```; // Update the VT1 index
break; // End the loop once the slope change is found
}
}
for (int j = VT1_index; j < length; j++)
{
slope2 = calculateSlope(VO2_data, VCO2_data, VT1_index, j2 = 0.0;
int VT1_index = 0;
for (int i = 0; i < length; i++)
{
slope1 = calculateSlope(VO2_data, VCO2_data, 0, i);
if (slope1 != slope2)
{
VT1 = VO2_data[i];
VT1_index = i; // Update the VT1 index
break; // End the loop once the slope change is found
}
}
for (int j = VT1_index; j < length; j++)
{
slope2 = calculateSlope();
if (slope1 != slope2)
{
VT2 = VO2_data[j];
break; // End the loop once the slope change is found
}
}
}
```VO2_data, VCO2_data, VT1_index, j);
if (slope1 != slope2)
{
VT2 = VO2_data[j];
break; // End the loop once the slope change is found
}
}
}
```int end)
{
// Calculation of slope using least squares
float sumXY = 0;
float sumX = 0;
float sumY = 0;
float sumX2 = 0;
for (int i = start; i < end; i++)
{
sumXY += x[i] * y[i];
sumX += x[i];
sumY += y[i];
sumX2 += x[i] * x[i];
}
float slope = (end - start) * (sumXY - (sumX * sumY) / (end - start)) / (sumX2 - (sumX * sumX) / (end - start));
return slope;
}
// Calculates VT1 and VT2 using the Dickhuth method
void calcularUmbrales()
{
int length = sizeof(VO2_data) / sizeof(VO2_data[0]);
float slope1 = 0.0;
float slope2 = 0.0;
int VT1_index = 0;
for (int i = 0; i < length; i++)
{
slope1 = calculateSlope(VO2_data, VCO2_data, 0, i);
if (slope1 != slope2)
{
VT1 = VO2_data[i];
VT1_index = i; // Update the VT1 index
break; // End the loop once the slope change is found
}
}
for (int j = VT1_index; j < length; j++)
{
slope2 = calculateSlope(VO2_data, VCO2_data, VT1_index, j);
if (slope1 != slope2)
{
VT2 = VO2_data[j];
break; // End the loop once the slope change is found
}
}
}
// Dickhuth Method - Maximum acceleration between VO2 and VCO2 measured in 5-second intervals
void calculateVO2Dickhuth(float VO2[], float VCO2[], int length, float& VT1, float& VT2)
{
float maxAcceleration = 0.0;
int maxAccelerationIndex = 0;
// Calculate the maximum acceleration between VO2 and VCO2 in 5-second intervals
for (int i = 2; i < length - 2; i++)
{
float acceleration = (VO2[i + 2] + VCO2[i + 2] - 2 * VO2[i] - 2 * VCO2[i] + VO2[i - 2] + VCO2[i - 2]) / 5.0;
if (acceleration > maxAcceleration)
{
maxAcceleration = acceleration;
maxAccelerationIndex = i;
}
}
// Obtain the values of VT1 and VT2 corresponding to the maximum acceleration
VT1 = VO2[maxAccelerationIndex] * 0.5;
VT2 = VO2[maxAccelerationIndex] * 0.7;
}