-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.json
1434 lines (1433 loc) · 83.6 KB
/
database.json
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
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"home": {
"carousel": [
{
"src": "img/slideshow/slideshow0.jpg",
"caption": "ICIC - DCIC"
},
{
"src": "img/slideshow/slideshow1.jpg",
"caption": "Universidad Nacional del Sur"
},
{
"src": "img/slideshow/slideshow2.jpg",
"caption": "Digital Systems Laboratory"
},
{
"src": "img/slideshow/slideshow3.jpg"
},
{
"src": "img/slideshow/slideshow4.jpg"
},
{
"src": "img/slideshow/slideshow5.jpg",
"caption": "Degree project: Combine harvester monitor"
},
{
"src": "img/slideshow/slideshow6.jpg",
"caption": "Lab's 3D printer"
},
{
"src": "img/slideshow/slideshow7.jpg",
"caption": "Lab's 3D printer and quad-copter"
},
{
"src": "img/slideshow/slideshow8.jpg",
"caption": "CNC Cover Crop Lidar Scanner"
}
],
"history": "The Real-Time Systems Group was started in 1987. It has worked in schedulability of local and wide area networks, task scheduling in mono processor and multicore processors with energy constraints and has explored mechanisms for fault-tolerance in real-time systems. <br> The group has developed a real-time operating systems (SOOS) for embedded systems and has worked in the modeling and requirement analysis of cyber-physical systems. In the last years, opportunistic and mobile ad-hoc networks have led the research towards collaborative systems and the IoT. The group works with different researchers from Italy, Spain, Chile, Brazil and USA. Together with the real-time and communication systems research, the use of hardware description languages for the implementation of reconfigurable digital architectures is an important area of work. Since 2012, the group is working with the Analytic Chemestry group from INQUISUR in instrumentation and analysis for different applications generating a transfer of technology in an interdisciplinary project. Recently a new line of research was opened with researchers from CERZOS. The list of publications, with dates and authors, represents a chronological synthesis of the evolution of the group. The Digital Systems Laboratory, home of the Group, is part of the <a href='http://www.diec.uns.edu.ar'>Department of Electrical Engineering and Computers (DIEC)</a> and of the <a href='http://www.icic.conicet.gov.ar/'>Institute of Computer Sciences and Engineering (ICIC)</a>.",
"mission": "The group's main line of research involves the study, analysis, simulation and implementation of real-time restricted systems that runs on digital hardware, in general, embedded systems, FPGA, communication networks and their applications that are of interest in the local industrial and socioeconomic sector."
},
"group": {
"categories": [{
"name": "Group Members",
"members": ["jorozco", "rsantos", "rcayssials", "eferro", "geggly", "mmicheletto", "mfino", "allinas", "adello"]
},
{
"name": "Related Members",
"members": ["jurriza", "lordinez", "fpaez", "dbanfi", "dsanchez"]
},
{
"name": "Past Members",
"members": ["jsantos", "ddonari", "oalimenti"]
}
],
"members": {
"jorozco": {
"name": "Javier Orozco",
"degree": "Ph.D. in Engineering",
"pic": "img/profiles/Javier.jpg",
"desc": "Javier Orozco received the Electrical Engineering degree and the Doctorate in Engineering (supervised by Jorge Santos) from the Universidad Nacional del Sur in 1984 and 1998 respectively. His research is focused on the scheduling of real-time systems, collaborative systems and communication systems. He has supervised Rodrigo Santos, Jose Urriza doctoral thesis and supervised Leo Ordinez and David Donari doctoral thesis. He has supervised Martin Duval Master thesis. He is actually supervising Francisco Paez and Damian Banfi both with CONICET's Doctoral scholarship. He teaches Logical Design at the under-graduate level and dictates graduate courses. He is the Director of the Argentine-French Project ARFITEC for the UNS. He has been Dean Director of the Department of Electrical Engineering and Computers 2001-2008 and has served in several Evaluation Committees at both CONICET and ANPCyT. <br> He is currently the Head of the RTS group.",
"contact": {
"email": "[email protected]"
}
},
"rsantos": {
"name": "Rodrigo Santos",
"degree": "Ph.D. in Engineering",
"pic": "img/profiles/Rodrigo.jpg",
"desc": "Rodrigo Martin Santos received the Electrical Engineering degree and the Doctorate in Engineering (supervised in the final stages by Javier Orozco) from the Universidad Nacional del Sur in 1997 and 2001, respectively. He is presently CONICET Adjunt Researcher. His research interests are scheduling embedded real-time systems, data ad-hoc networks and collaborative systems. He has supervised Leo Ordinez and David Donari doctoral thesis under CONICET's scholarships in the area of real-time operating systems. He is supervising interdisciplinary thesis of Gabriel Eggly and Matias Micheletto together with researchers from INQUISUR and CERZOS in CONICET. In 2003, 2005, 2007 and 2010 he has been a visiting scholar at the Scuola Superiore Sant'Anna, Pisa, Italy, working together with Prof. Lipari. In 2015 he has been at University of Pittsburgh working with Prof. Mosse under a CONICET-Fulbright program. He teaches Digital Embedded Computers and Data Networks at the under-graduate level and several graduate courses. He has been a visiting Professor at Universidad Nacional de San Agustin, Arequipa, Peru, Scuola Superiore Sant'Anna, Universidad Nacional de la Patagonia San Juan Bosco and Universidad Argentina de la Empresa.",
"contact": {
"email": "[email protected]"
}
},
"rcayssials": {
"name": "Ricardo Cayssials",
"degree": "Ph.D. in Engineering",
"pic": "img/profiles/Ricardo.jpg",
"desc": "Ricardo Cayssials received the Electrical Engineering degree and the Doctorate in Engineering (supervised by Jorge Santos) from the Universidad Nacional del Sur in 1993 and 1999 respectively. In 2001, he was granted a postdoctoral scholarship by The University of York, England, which visited again at the beginning of 2003. His main research area is Programmable Logic. Because of his work, the Digital Systems Laboratory is a member of the ALTERA University Program. He teaches Design of Highly Complex Logical Circuits. His second research area is the schedulability analysis of hard and weakly real time for both multi-user-single-resource and multi-user-multi-resource systems. He has supervised the Master Thesis of Martin Duval and Adriana Micheli. He is actually supervising Damian Banfi Doctoral Thesis with a CONICET doctoral scholarship. He is the head of the graduate program on advanced digital architectures. Since 2013 he is Full Professor at Facultad Regional Bahia Blanca of Universidad Tecnológica Nacional.",
"contact": {
"email": "[email protected]"
}
},
"eferro": {
"name": "Edgardo Ferro",
"degree": "Ph.D. in Engineering",
"pic": "img/profiles/Edgardo.jpg",
"desc": "Edgardo Ferro received the Electronics Engineering and the Doctorate in Engineering (supervised by Jorge Santos) degrees from the Universidad Nacional del Sur in 1990 and 1999 respectively. His research interests have covered telemedical systems and the assignment problem in multitask-multiprocessor systems using heuristic methods, evolutionary algorithms and tabu search. He teaches Applied Computer Engineering. He has supervised Master thesis of Adriana Micheli.",
"contact": {
"email": "[email protected]"
}
},
"dsanchez": {
"name": "Diana Sánchez",
"degree": "Electronic Engineer",
"pic": "img/profiles/Diana.jpg",
"desc": "Diana Sánchez received the Electronics Engineering degree from the Universidad Nacional del Sur in 1998. Her research is centered on the utilization of wireless sensor networks for the assistance of elderly people. Since 2016 she is Adjunt Professor at Universidad Nacional del Sur. She has served as Academic Secretary at Departamento de Ingenieria Electrica y Computadoras.",
"contact": {
"email": "[email protected]"
}
},
"geggly": {
"name": "Gabriel Eggly",
"degree": "Ph.D. in Engineering",
"pic": "img/profiles/Gabriel.jpg",
"desc": "Gabriel Eggly received the Electronics Engineer and the Doctorate in Engineering (supervised by Rodrigo Santos) degrees from the Universidad Nacional del Sur in 2013 and 2018. He has a Doctoral Scholarship from CONICET. His research interest is in the field of embedded systems for instrumentation and control of chemical analysis and processes. He is supervised by Rodrigo Santos and Marcelo Pistonesi from INQUISUR. He assists in the courses of Digital Computers.",
"contact": {
"email": "[email protected]"
}
},
"mmicheletto": {
"name": "Matías Micheletto",
"degree": "Electronic Engineer",
"pic": "img/profiles/Matias.jpg",
"desc": "Matías Micheletto received the Electronics Engineer degree from the Universidad Nacional del Sur in 2016. He has a Doctoral Scholarship from CONICET. His research interest is in the field of numeric optimization and embedded systems for instrumentation applied to the analysis of soil and crops. He is supervised by Rodrigo Santos and Juan Galantini from CERZOS. He assists in the courses of Digital Computers.",
"contact": {
"email": "[email protected]",
"github": "http://www.github.com/matiasmicheletto",
"linkedin": "https://ar.linkedin.com/in/matiasmicheletto",
"website": "http://matiasmicheletto.github.io"
}
},
"dbanfi": {
"name": "Damián Banfi",
"degree": "Electronic Engineer",
"pic": "img/profiles/Damian.jpg",
"desc": "Damián Banfi received the Electronics Engineer degree from the Universidad Tecnoloica Nacional in 2015. He has a Doctoral Scholarship from CONICET. His research interest is in the field of hardware description languages applied to the co-design of embedded system. He assists in the courses of Digital Systems.",
"contact": {
"email": "[email protected]"
}
},
"jurriza": {
"name": "José Urriza",
"degree": "Ph.D. in Engineering",
"pic": "img/profiles/Jose.jpg",
"desc": "José Manuel Urriza received the Doctor in Engineer from the Universidad Nacional del Sur in 2008. He received the Electronics Engineering degree from the Universidad Nacional del Sur in 2000. His research is centered on the schedulability of heterogeneous Real-Time Systems. Since 2009 he is Adjunt Professor at Universidad Nacional de la Patagonia San Juan Bosco at Puerto Madryn.",
"contact": {
"email": ""
}
},
"lordinez": {
"name": "Leonardo Ordinez",
"degree": "Ph.D. in Engineering",
"pic": "img/profiles/Leo.jpg",
"desc": "Leo Ordinez received the Doctor in Engineer from the Universidad Nacional del Sur in 2010. He received the Systems Engineering degree from the Universidad Nacional del Sur in 2006. His research is centered on the modeling and requirement analysis of cyber-physical systems. Since 2015 he is Adjunt Professor at Universidad Nacional de la Patagonia San Juan Bosco at Puerto Madryn and Universidad de Chubut in Rawson.",
"contact": {
"email": "[email protected]"
}
},
"fpaez": {
"name": "Francisco Paez",
"degree": "Computing Engineering",
"pic": "img/profiles/Francisco.jpg",
"desc": "Francisco Paez received the Licenciature in Informatics degree from the Universidad Nacional San Juan Bosco in 2012. He has a Doctoral Scholarship from CONICET. His research interest is in the schedulability of heterogeneous Real-Time Systems with energy constraints. He is supervised by Javier Orozco and Jose Urriza. He assists in the courses of Operating Systems.",
"contact": {
"email": ""
}
},
"mfino": {
"name": "Mariano Finochietto",
"degree": "Mphil. Engineering",
"pic": "img/profiles/Mariano.jpeg",
"desc": "Mariano Finochietto received the Systems Engineering degree from the Universidad CAECE in Mar del Plata in 2013 and the MPhil from EISEE (Paris) in 2016. He is actually working at Universidad Nacional de Mar del Plata and he is an IoT Engineer Contractor for SpinalCom (France) and founder of CTO Ponce AgTech. He is a Phdd. Student at Universidad Nacional del Sur under the supervision of Rodrigo Santos. His research interests are in IoT protocols",
"contact": {
"email": "[email protected]"
}
},
"allinas": {
"name": "Andres Llinas",
"degree": "Electronic Engineering",
"pic": "img/profiles/Andres.jpeg",
"desc": "Andrés Llinás received the Electronic Engineering degree from the Universidad Nacional del Sur in 2008. In 2013 he received the Specialist grade in Gestión de la Tecnología y la Innovación. He has worked in the industry leading several projects and since 2017 he is Director de Telecomunicaciones at Universidad Provincial del Sudoeste. He is teacher assistant at Universidad Nacional del Sur and Professor at UPSO. He is research interests are in software defined networks.",
"contact": {
"email": "[email protected]"
}
},
"adello": {
"name": "Alejandro Dello Russo",
"degree": "Electronic Engineering",
"pic": "img/profiles/Elian.jpeg",
"desc": "Alejandro Dello Russo received the Electronic Engineering degree from the Universidad Nacional del Sur in 2013. He is working at Instituto Nacional de Tecnología Industrial. He is teacher assistant at Universidad Nacional del Sur. He is research interests are Embedded Systems.",
"contact": {
"email": "[email protected]"
}
},
"jsantos": {
"name": "Jorge Santos",
"degree": "Industrial Engineer",
"pic": "img/profiles/Jorge.jpg",
"desc": "Jorge Santos received the degree in Industrial Engineering, with honours, from the Universidad de Buenos Aires in 1951. In 1956 he was appointed professor at the recently created Universidad Nacional del Sur. In 1959/60, with a one-year scholarship granted by the National Council of Scientific and Technical Research of Argentina (CONICET), he studied Logical Design of Digital Computers at the University of Manchester, UK. In the early 60s he led the project CEUNS to build the first electronic argentine computer. In 1976, while heading a research group at the Digital Systems Laboratory, he was dismissed from his position by the military dictatorship. After the return of democracy and more then ten years in Surconsult, his own consulting company, he returned full-time to the UNS and started a group studying Local Area Networks in real-time environments, later focused on real-time scheduling. He is actually retired. He is IEEE Life Member, 1993 Konex Diploma Award and Correpondent Academician of the National Academy of Engineering.",
"contact": {
"email": ""
}
},
"ddonari": {
"name": "David Donari",
"degree": "Ph.D. in Engineering",
"pic": "img/profiles/David.jpg",
"desc": "David Donari received the Doctor in Engineer from the Universidad Nacional del Sur in 2015. He received the Systems Engineering degree from the Universidad Nacional del Sur in 2006. His actually working as an independent professional.",
"contact": {
"email": ""
}
},
"oalimenti": {
"name": "Omar Alimenti",
"degree": "Mphil. in Engineering",
"pic": "img/profiles/Omar.jpg",
"desc": "Omar Alimenti received the Electrical Engineering and the Magister in Engineering (supervised by Jorge Santos) degrees from the Universidad Nacional del Sur in 1979 and 1999, respectively. His main research interest was the monitoring of real-time systems to optimize the slot-time under different load conditions and overheads associated to processor preemptions. He taught Digital Computers for over 20 years. He passed away in January 2013.",
"contact": {
"email": ""
}
}
}
},
"research": {
"sections": [{
"title": "Publications",
"id": "publications",
"headers": {
"year": true,
"title": true,
"desc": true,
"authors": true
},
"content": ["publ2201", "publ2202", "publ2203", "publ2101", "publ2102", "publ2003", "publ2003", "publ2002", "publ2001", "publ1903", "publ1902", "publ1901", "publ1804", "publ1803", "publ1802", "publ1801", "publ1705", "publ1704", "publ1703", "publ1701", "publ04", "publ1701", "publ01", "publ02", "publ03", "publ05", "publ06", "publ07", "publ08", "publ09", "publ10", "publ11", "publ12", "publ13", "publ14", "publ15", "publ16", "publ17", "publ18", "publ19", "publ20", "publ21", "publ22", "publ23", "publ24", "publ25", "publ26", "publ27", "publ28", "publ29", "publ30", "publ31", "publ32", "publ33", "publ34", "publ35", "publ36", "publ37", "publ38", "publ39", "publ40", "publ41", "publ42", "publ43", "publ44", "publ45", "publ46", "publ47", "publ48", "publ49", "publ50", "publ51", "publ52", "publ53"]
},
{
"title": "Projects",
"id": "projects",
"headers": {
"year": true,
"title": true,
"desc": false,
"authors": false
},
"content": ["pro01", "pro02", "pro03", "pro04", "pro05", "pro06", "pro07", "pro08", "pro09", "pro10", "pro11"]
},
{
"title": "Transfers",
"id": "transfers",
"headers": {
"year": true,
"title": true,
"desc": true,
"authors": true
},
"content": ["transf01", "transf02", "transf03", "transf04", "transf05", "transf06", "transf07", "transf08", "transf09", "transf10", "transf11", "transf12", "transf13", "transf14", "transf15", "transf16", "transf17"]
},
{
"title": "Internal Reports",
"id": "internal",
"headers": {
"year": true,
"title": true,
"desc": false,
"authors": true
},
"content": ["ir01", "ir02", "ir03"]
},
{
"id": "divider"
},
{
"title": "Master Thesis",
"id": "master",
"headers": {
"year": true,
"title": true,
"desc": true,
"authors": true
},
"content": ["mt01", "mt02", "mt03"]
},
{
"title": "Doctoral Thesis",
"id": "doctoral",
"headers": {
"year": true,
"title": true,
"desc": true,
"authors": true
},
"content": ["dt01", "dt02", "dt03", "dt04", "dt05", "dt06", "dt07", "dt08"]
}
],
"items": {
"publ2201": {
"title": "Open Source Automated Flow Analysis Instrument for Detecting Arsenic in Water",
"authors": "Gutiérrez, J., Mochen, J.P., Eggly, G., Pistonesi, M., Santos, R.",
"year": "2022",
"desc": "HardwareX, 2022, 11, e00284",
"authors_ref": ["geggly", "rsantos"],
"section": "publications",
"links": ["https://www.scopus.com/record/display.uri?eid=2-s2.0-85126927222&origin=resultslist&sort=plf-f"]
},
"publ2202": {
"title": "Flow Scheduling in Data Center Networks with Time and Energy Constraints: A Software-Defined Network Approach",
"authors": "Fraga, M., Micheletto, M., Llinás, A., Santos, R., Zabala, P.",
"year": "2022",
"desc": "Future Internet, 2022, 14(2), 65",
"authors_ref": ["mmicheletto", "allinas", "rsantos"],
"section": "publications",
"links": ["https://www.scopus.com/record/display.uri?eid=2-s2.0-85125341056&origin=resultslist&sort=plf-f"]
},
"publ2203": {
"title": "Analysis of real-time jitter in cyber-physical applications using frequency domain perturbation",
"authors": "Cayssials, R., Ferro, E.",
"year": "2022",
"desc": "International Journal of General Systems, 2022",
"authors_ref": ["rcayssials", "eferro"],
"section": "publications",
"links": ["https://www.scopus.com/record/display.uri?eid=2-s2.0-85132197376&origin=resultslist&sort=plf-f"]
},
"publ2101": {
"title": "LoRaMoto: A communication system to provide safety awareness among civilians after an earthquake",
"authors": "Pueyo Centelles, R., Meseguer, R., Freitag, F., ...Ochoa, S.F., Santos, R.M.",
"year": "2021",
"desc": "Future Generation Computer Systems, 2021, 115, pp. 150–170",
"authors_ref": ["rsantos"],
"section": "publications",
"links": ["https://www.scopus.com/record/display.uri?eid=2-s2.0-85090602021&origin=resultslist&sort=plf-f"]
},
"publ2102": {
"title": "An IoT-based infrastructure to enhance self-evacuations in natural hazardous events",
"authors": "Finochietto, J.M., Micheletto, M., Eggly, G.M., ...Meseguer, R., Orozco, J.",
"year": "2021",
"desc": "Personal and Ubiquitous Computing, 2021",
"authors_ref": ["geggly", "mmicheletto", "mfino", "jorozco"],
"section": "publications",
"links": ["https://www.scopus.com/record/display.uri?eid=2-s2.0-85100556664&origin=resultslist&sort=plf-f"]
},
"publ2004": {
"title": "Embedded real-time systems in cyber-physical applications: a frequency domain analysis methodology",
"authors": "C. Aciti, Ricardo Cayssials, Edgardo Ferro, José Manuel Urriza, Javier Orozco",
"year": "2020",
"desc": "International Journal of General Systems 49(2), pp. 201-221",
"authors_ref": ["rcayssials", "eferro", "jorozco"],
"section": "publications",
"links": []
},
"publ2003": {
"title": "Predicting Topology Propagation Messages in Mobile Ad Hoc Networks: The Value of History",
"authors": "Pere Millan, Carles Aliagas, Carlos Molina, Roc Meseguer, Sergio Ochoa, Rodrigo Santos",
"year": "2020",
"desc": "SENSORS; Lugar: Basel; vol. 20 p. 1 - 24;",
"authors_ref": ["rsantos"],
"section": "publications",
"links": []
},
"publ2002": {
"title": "Development and Validation of a LiDAR Scanner for 3D Evaluation of Soil Vegetal Coverage",
"authors": "Matías Micheletto, Luciano Zubiaga, Rodrigo Santos, Juan Galantini, Miguel Cantamutto, Javier Orozco",
"year": "2020",
"desc": "Electronics Place: Basel, vol. 9;",
"authors_ref": ["mmicheletto", "rsantos", "jorozco"],
"section": "publications",
"links": []
},
"publ2001": {
"title": "Using UML for learning how to design and model cyber-physical systems",
"authors": "Leo Ordinez, Gabriel Eggly, Matías Micheletto, Rodrigo Santos",
"year": "2020",
"desc": "IEEE Journal of Latin-American Learning Technologies; Año: 2020",
"authors_ref": ["geggly", "mmicheletto", "rsantos"],
"section": "publications",
"links": []
},
"publ1903": {
"title": "A Nomadic Testbed for Teaching Computer Architecture",
"authors": "P. D. Godoy, R. L. García Garino, Ricardo Cayssials",
"year": "2019",
"desc": "Communications in Computer and Information Science 995, pp. 74-87 ",
"authors_ref": ["rcayssials"],
"section": "publications",
"links": []
},
"publ1902": {
"title": "A Role-Based Software Architecture to Support Mobile Service Computing in IoT Scenarios",
"authors": "Mariano Finochietto, Gabriel Eggly, Rodrigo Santos, Javier Orozco, Sergio Ochoa, Roc Meseguer",
"year": "2019",
"desc": "SENSORS; Lugar: Basel; Año: 2019 vol. 19",
"authors_ref": ["geggly", "rsantos", "jorozco"],
"section": "publications",
"links": []
},
"publ1901": {
"title": "Scheduling Mandatory-Optional Real-Time Tasks in Homogeneous Multi-Core Systems with Energy Constraints Using Bio-Inspired Meta-Heuristics",
"authors": "Matías Micheletto, Rodrigo Santos, Javier Orozco",
"year": "2019",
"desc": "JOURNAL OF UNIVERSAL COMPUTER SCIENCE; Lugar: Graz; vol. 25 p. 390 - 417",
"authors_ref": ["mmicheletto", "rsantos", "jorozco"],
"section": "publications",
"links": []
},
"publ1804": {
"title": "Communication channel occupation and congestion in wireless sensor networks",
"authors": "P. D. Godoy, Ricardo Cayssials, R. L García Garino",
"year": "2018",
"desc": "Computers and Electrical Engineering, vol 72, pág. 846-858",
"authors_ref": ["rcayssials"],
"section": "publications",
"links": []
},
"publ1803": {
"title": "Providing real-time message delivery on opportunistic networks",
"authors": "Rodrigo Santos, Javier Orozco, Sergio Ochoa, Roc Meseguer, Daniel Mosse",
"year": "2018",
"desc": "IEEE Access; Lugar: Nueva York; vol. 6 p. 40696 - 40712",
"authors_ref": ["rsantos", "jorozco"],
"section": "publications",
"links": []
},
"publ1802": {
"title": "Emitter/receiver piezoelectric films coupled to flow-batch analyzer for acoustic determination of free glycerol in biodiesel without chemicals/external pretreatment",
"authors": "Gabriel Eggly, Matías Blackhall, Adriano de Araujo Gomes, Rodrigo Santos, Mario Cesar Uglino de Araujo, Marcelo Pistonesi",
"year": "2018",
"desc": "MICROCHEMICAL JOURNAL, vol. 138 p. 296 - 302",
"authors_ref": ["rsantos", "geggly"],
"section": "publications",
"links": []
},
"publ1801": {
"title": "Flying Real-Time Network to Coordinate Disaster Relief Activities in Urban Areas",
"authors": "Matías Micheletto, Vinicius Petrucci, Rodrigo Santos, Javier Orozco, Daniel Mosse, Sergio Ochoa, Roc Meseguer",
"year": "2018",
"desc": "Sensors; Place: Besel;",
"authors_ref": ["mmicheletto", "rsantos", "jorozco"],
"section": "publications",
"links": []
},
"publ1705": {
"title": "Embedded Flow-Batch System with Electrochemical Detection for the Determination of Lead in Propolis Samples",
"authors": "Gabriel Eggly, Martín Nabaes, María Susana Dinezio, María Eugenia Centurión, Rodrigo Santos, Marcelo Pistonesi",
"year": "2017",
"desc": "INTERNATIONAL JOURNAL OF ENVIRONMENTAL ANALYTICAL CHEMISTRY; Lugar: Londres;",
"authors_ref": ["geggly", "rsantos"],
"section": "publications",
"links": []
},
"publ1704": {
"title": "Supporting Real-Time Message Delivery in Disaster Relief Efforts: An Analytical Approach",
"authors": "Rodrigo Santos, Javier Orozco, Sergio Ochoa, Daniel Mosse",
"year": "2017",
"desc": "Lecture Notes in Computer Science;",
"authors_ref": ["rsantos", "jorozco"],
"section": "publications",
"links": []
},
"publ1703": {
"title": "Flying Real-Time Network for Disaster Assistance",
"authors": ", Javier Orozco, Daniel Mosse, Vinicius Petrucci, Serigio, Ochoa, Roc Meseguer",
"year": "2017",
"desc": "LECTURE NOTES IN COMPUTER SCIENCE",
"authors_ref": ["rsantos", "jorozco"],
"section": "publications",
"links": []
},
"publ04": {
"title": "Energy Aware Scheduling Mandatory/Optional Tasks in Multicore Real Time Systems",
"authors": "Mendez-Diaz, Javier Orozoco, Rodrigo Santos, Paula Zabala",
"year": "2017",
"desc": "INTERNATIONAL TRANSACTIONS IN OPERATIONAL RESEARCH; Place: New Jersey; Year: 2016.",
"authors_ref": ["jorozco", "rsantos"],
"section": "publications",
"links": []
},
"publ1701": {
"title": "A Stochastic Approach for Modeling Message Dissemination in Opportunistic Networks",
"authors": "Javier Orozco; Rodrigo Santos; Sergio F. Ochoa; Roc Meseguer",
"year": "2017",
"desc": "WIRELESS PERSONAL COMMUNICATIONS; Place: Berlin;",
"authors_ref": ["rsantos", "jorozco"],
"section": "publications",
"links": []
},
"publ01": {
"title": "A MAC Protocol to Support Monitoring of Underwater Spaces",
"authors": "Rodrigo Santos, Javier Orozoco, Sergio Ochoa, Roc Meseguer, Gabriel Eggly, Marcelo Pistonesi",
"year": "2016",
"desc": "SENSORS; Place: Basel; Year: 2016 vol. 16 p. 984 - 1003.",
"authors_ref": ["rsantos", "jorozco", "geggly"],
"section": "publications",
"links": []
},
"publ02": {
"title": "Design and Implementation of a Witness Unit for Opportunistic Routing in Tsunami Alert Scenarios",
"authors": "Rodrigo Santos, Daniel Mossé, Taieb Znati, Louise Comfort",
"year": "2015",
"desc": "SAFETY SCIENCE; Place: Amsterdam; Year: 2015.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ03": {
"title": "MASU: A Framework that Supports Distributed Pervasive Data Sensing",
"authors": "Esunly Medina, David López, Sergio Ochoa, Rodrigo Santos",
"year": "2016",
"desc": "SENSORS; Place: Basel; Year: 2016 vol. 16 p. 1062 - 1089.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ05": {
"title": "A clinically assisted collaborative system architecture for preventing falls in elderly people",
"authors": "J. Orozco, R. Santos, S. Ochoa, L. Ordinez, R. Meseguer, N. Baloian",
"year": "2014",
"desc": "LECTURE NOTES IN COMPUTER SCIENCE; 2014.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ06": {
"title": "Human-centric Wireless Sensor Networks to Improve Information Availability During Urban Search and Rescue Activities",
"authors": "Sergio Ochoa, Rodrigo Santos",
"year": "2015",
"desc": "INFORMATION FUSION, 2015 vol. 22 p. 71 - 84.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ07": {
"title": "Computational Cost Reduction for Real-Time Schedulability Tests Algorithms",
"authors": "Jose M. Urriza; Francisco E. Paez; Javier D. Orozco; Ricardo Casyssials",
"year": "2015",
"desc": "IEEE Latin America Transactions (Volume:13, Issue: 12 ), pp: 3714-3723, ISSN: 1548-0992, DOI: 10.1109/TLA.2015.7404899, Dec. 2015.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ08": {
"title": "A MAC protocol for Underwater Sensors Networks",
"authors": "Rodrigo Santos, Javier Orozco, Sergio Ochoa, Roc Meseguer, Gabriel Eggly",
"year": "2015",
"desc": "LECTURE NOTES IN COMPUTER SCIENCE; Year: 2015 vol. 9454 p. 394 - 406.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ09": {
"title": "Using a History-Based Approach to Predict Topology Control Information in Mobile Ad Hoc Net-works",
"authors": "P. Millan, C. Molina, R. Meseguer, S. Ochoa, R. Santos",
"year": "2014",
"desc": "LECTURE NOTES IN COMPUTER SCIENCE; 2014 vol. 8729 p. 237 - 249.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ10": {
"title": "Modeling IoT-Based Solutions Using Human-Centric Wireless Sensor Networks",
"authors": "A. Monares, S. Ochoa, R. Santos, J. Orozco, R. Meseguer",
"year": "2014",
"desc": "SENSORS.Basel: MOLECULAR DIVERSITY PRESERVATION INTERNATIONAL-MDPI. 2014 vol. n. p - . issn 1424-8220.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ11": {
"title": "Energy-Aware Topology Control Strategy for Human-Centric Wireless Sensor Networks",
"authors": "Roc Meseguer, C. Molina, S. Ochoa, R. Santos",
"year": "2014",
"desc": "SENSORS.Basel: MOLECULAR DIVERSITY PRESERVATION INTERNATIONAL-MDPI. 2014 vol.14 n 2. p2619 - 2643. issn 1424-8220.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ12": {
"title": "Real-Time Scheduling Architecture for Embedded Systems",
"authors": "Ricardo Cayssials, Edgardo Ferro, Jose M. Urriza and Eduardo Boemo",
"year": "2013",
"desc": "International Review on Computers and Software (IRECOS), August 2013, Vol. 8 Nro. 8, Print ISSN 1828-6003, Abstracting and Indexing Information: Cambridge Scientific Abstracts (CSA/CIG), Academic Search Complete (EBSCO Information Services), COMPENDEX - Elsevier Bibliographic Database, Copernicus.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ13": {
"title": "The Internet of Things to Support Urban Incident Responses",
"authors": "R. Santos, J. Orozco, S. Ochoa, R. Meseguer",
"year": "2013",
"desc": "LECTURE NOTES IN COMPUTER SCIENCE.: SPRINGER. 2013 vol.8276 n. p286 - 293. issn 0302-9743.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ14": {
"title": "Instante Critico con Jitter: un estado poco probable",
"authors": "Francisco Paez, Jose Urriza, Mariano Ferrari, Ricardo Cayssials y Javier Orozco",
"year": "2013",
"desc": "Iberoamerican Journal of Industrial Engineering, ISSNe 2175-8018, Florianopolis, SC, Brasil, v.5, n.10, p130-141, 2013.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ15": {
"title": "On-line schedulability tests for adaptive reservations in fixed priority scheduling",
"authors": "R. Santos, G. Lipari,E. Bini, T. Cuccinota",
"year": "2012",
"desc": "REAL-TIME SYSTEMS, Vol. 48, Issue 5, pp. 601-634. September 2012.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ16": {
"title": "A Real-Time Analysis Approach in Opportunistic Networks",
"authors": "R. Santos, J. Orozco, S. F. Ochoa",
"year": "2011",
"desc": "ACM SIGBED Review.: ACM. 2011 vol.8 n. 3. p1 - 4. issn 1551-3688.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ17": {
"title": "Time is not Enough: Dealing with Behavior in Real-Time Systems",
"authors": "L. Ordinez, D. Donari, R. Santos, J. Orozco",
"year": "2011",
"desc": "JOURNAL OF UNIVERSAL COMPUTER SCIENCE.: GRAZ UNIV TECHNOLGOY,vol.17 n 11. p1572 - 1604, 2011.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ18": {
"title": "Preface",
"authors": "E. Leiss, R. Santos.",
"year": "2011",
"desc": "Electronic Notes in Theoretical Computer Science.: Elsevier. 2011 vol.n. p1 - 4. issn 1571-0661, 2011.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ19": {
"title": "Low Cost Slack Stealing Method for RM/DM",
"authors": "Jose M. Urriza, Francisco E. Paez, Ricardo Cayssials, Javier D. Orozco, Lucas S. Schorb",
"year": "2010",
"desc": "International Review on Computers and Software - November 2010, Vol. 5 Nro 6, Print ISSN: 1828-6003, Abstracting and Indexing Information: Cambridge Scientific Abstracts (CSA/CIG), Academic Search Complete (EBSCO Information Services), COMPENDEX - Elsevier Bibliographic Database, Copernicus.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ20": {
"title": "On the Feasibility of Early Detection of Environmental Events through Wireless Sensor Networks and the Use of 802.15.4 and GPRS",
"authors": "J. Santos, R. Santos, J. Orozco",
"year": "2009",
"desc": "Lecture Notes in Computer Science,2009.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ21": {
"title": "ICTs in Latinamerica: An overview",
"authors": "R. Santos",
"year": "2009",
"desc": "CLEI Electronic Journal, 12 (2), 1-16, 2009.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ22": {
"title": "Reduced Computational cost in the Calculation of Worst Case Response Time for Real-Time Systems",
"authors": "J. Urriza, L. Schorb, J. Orozco, R. Cayssials",
"year": "2009",
"desc": "Journal of Computer Science & Technology, ISSN 1666-6038, Vol. 9, Nro 2, Octuber 2009.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ23": {
"title": "Improving the schedulability of soft real-time open dynamic systems: The inheritor is actually a debtor",
"authors": "Rodrigo Santos, Giuseppe Lipari and Jorge Santos",
"year": "2008",
"desc": "Journal of Systems and Software, Elsevier, 81(7) (2008), 1093-1104.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ24": {
"title": "uRT51: An Embedded Real-Time processor implemented on FPGA devices",
"authors": "R. Cayssials, M. Duval, E. Ferro and O. Alimenti",
"year": "2007",
"desc": "Latin American Applied Research, ISSN 0327-0793, Indexada SCI, Vol.37, Nro.1, pp.:35-40, 2007.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ25": {
"title": "Nuclear Supplier Upgrades Controls Increasing Efficiency",
"authors": "E. Ferro, M. Bolino, R. Carzoglio",
"year": "2006",
"desc": "Control Engineering, Inside Process, Elsevier Reed., pp. IP1-IP4, 2006.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ26": {
"title": "A Least Upper Bound on the Fault-Tolerance of Real-Time Systems",
"authors": "R. Santos, J. Santos, J. Orozco.",
"year": "2005",
"desc": "Journal of Systems and Software, Elsevier, 78 (2005) 47-55.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ27": {
"title": "Hard real-time systems with stochastic execution times: Deterministic and probabilistic guarantees",
"authors": "R. M. Santos, J. Santos and J. Orozco",
"year": "2005",
"desc": "International Journal of Computers and Applications, 27, 2 (2005), 57-62.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ28": {
"title": "EXPERION PKS CONVERSION FROM HONEYWELL TPS AT ENSI INDUSTRIAL HEAVY WATER PLANT",
"authors": "L. Dell'Orfano, E. Ferro, M. Bolino, D. Lazcano.",
"year": "2005",
"desc": "Proc Honeywell User Group, Honeywell Press, Arizona, USA, October 2005.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ29": {
"title": "New methods for redistributing slack time in real-time systems: applications and comparative evaluations",
"authors": "R. M. Santos, J. Urriza, J. Santos and J. Orozco",
"year": "2004",
"desc": "Journal of Systems and Software, 69 (2004) 115-128.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ30": {
"title": "Scheduling Precedence Constrained Tasks in Open Dynamic Systems",
"authors": "Rodrigo Santos and Giuseppe Lipari",
"year": "2003",
"desc": "Proc. WiP Session 15th Euromicro Conference on Real Time Systems, Porto, Portugal, 2003.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ31": {
"title": "Evolutionary Computation Tuned by Fuzzy Logic for the Assignment of Hard Real-Time Tasks in MIMD NUMA Parallel Architectures",
"authors": "E. Ferro, J. Santos, J. Orozco, R. Cayssials",
"year": "2002",
"desc": "Proceedings IASTED International Conference on Artificial Intelligence and Applications, pp. 307-311, Malaga, Spain, July 9-12, 2002.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ32": {
"title": "Heuristic use of singularities for on-line scheduling of real-time mandatory/reward based systems",
"authors": "R. M. Santos, J. Urriza, J. Santos and J. Orozco",
"year": "2002",
"desc": "Proc 14th Euromicro Conference on Real-Time Systems, pp. 103-110, Viena, 2002.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ33": {
"title": "Guaranteed On-Line Weakly-Hard Real-Time Systems",
"authors": "G. Bernat and R. Cayssials",
"year": "2001",
"desc": "Proceedings 22nd Real-Time Systems Symposium, pp. 25-35, London, England, 3-6 December, 2001.",
"authors_ref": [],
"section": "publications",
"links": [{
"url": "http://www.diec.uns.edu.ar/rts/papers/Onweakly.ps",
"text": "[PS]"
},
{
"url": "http://www.diec.uns.edu.ar/rts/papers/Onweakly.pdf",
"text": "[PDF]"
}
]
},
"publ34": {
"title": "Hybrid rate-monotonic/reward based scheduling of real-time embedded systems",
"authors": "J. Orozco, R. M. Santos y J. Santos",
"year": "2001",
"desc": "Proc IEEE Real-Time Embedded Systems Workshop, London, 2001.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ35": {
"title": "Real-Time Assignments: Genetic List Generation and Heuristic Mapping",
"authors": "E. Ferro, J. Santos, R. Cayssials and J. Orozco",
"year": "2001",
"desc": "Proc 13th International Conference on Parallel and Distrinbuted Computing and Systems, pp. 543/48, Anaheim, California, USA, 2001.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ36": {
"title": "Taking advantage of priority inversions generated to improve the processing of non-hard real-time tasks in mixed systems",
"authors": "J.Orozco, R. Santos, J. Santos and R. Cayssials",
"year": "2000",
"desc": "Proc WiP Session IEEE Real-Time Systems Symposium, pp. 13-16, Orlando, 2000.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ37": {
"title": "Mixing real and non real-time processing: Priority inversions are not so bad after all",
"authors": "J. Orozco, J. Santos, R. Cayssials and E. Ferro",
"year": "2000",
"desc": "Proc. WiP and Industrial Experience Session 12th Euromicro Conference on Real-Time Systems, pp. 7-10, Stockholm, 2000.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ38": {
"title": "Scheduling Heterogeneous Multimedia Serves: Different QoS for Hard, Soft and Non real-Time Clients",
"authors": "R. M. Santos, J. Santos and J. Orozco",
"year": "2000",
"desc": "Proc. 12th Euromicro Conference on Real-Time Systems, IEEE Computer Society Press, pp. 247-253, Stockholm, 2000.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ39": {
"title": "Real-Time Multimedia Standards in DQDB",
"authors": "R. M. Santos, J. Santos, J. Orozco and M. Zambon",
"year": "2000",
"desc": "Journal of Systems Architecture, 46, pp. 601-605, 2000.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ40": {
"title": "Rate monotonic scheduling of real-time control systems with the minimum number of priority levels",
"authors": "R. Cayssials, J. Orozco, J. Santos and R. Santos",
"year": "1999",
"desc": "Proc. 11th Euromicro Conference on Real-Time Systems, IEEE Computer Society Press, pp. 54-59, York, UK, 1999.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ41": {
"title": "Fixed-Priority scheduling in real-time multiprogramming environments: Liu & Layland revisited",
"authors": "R. Cayssials, J. Santos, J. Orozco and E. Ferro",
"year": "1999",
"desc": "Proc. WiP Session 11th Euromicro Conference on Real-Time Systems, pp. 45-48, York, UK, 1999.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ42": {
"title": "On the scheduling of real-time multihop packet-switching networks",
"authors": "J.Orozco, J.Santos, R.Cayssials and E. Ferro",
"year": "1998",
"desc": "Proc. 10th Euromicro Workshop on Real-Time Systems, IEEE Computer Society Press, Berlin, 1998.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ43": {
"title": "Precedence constraints in hard real-time distributed systems",
"authors": "J.Orozco, J.Santos, R.Cayssials and E.Ferro",
"year": "1997",
"desc": "Proc.3d IEEE Conference on the Engineering of Complex Computer Systems, IEEE Computer Society Press, Como, Italy, pp. 33-38, 1997.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ44": {
"title": "A heuristic approach to the multitask-multiprocessor assignement problem using the Empty-Slots method and Rate Monotonic scheduling",
"authors": "J.Santos, E. Ferro, J.Orozco and R.Cayssials",
"year": "1997",
"desc": "Real-Time Systems Journal, 13, 2, pp.167-200, 1997.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ45": {
"title": "802.4 Rate Monotonic scheduling in hard real-time environments: Setting the medium access control parameters",
"authors": "J. Orozco, R. Cayssials, J. Santos and E. Ferro",
"year": "1997",
"desc": "Information Processing Letters (Elsevier), 62, pp. 47-55, 1997.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ46": {
"title": "Is the DQDB priority mechanism good enough for the network intended applications?",
"authors": "R. Santos, M. Zambón, J. Santos and J. Orozco",
"year": "1997",
"desc": "Proc. 9th Euromicro Workshop on Real-Time Systems, IEEE Computer Sociert Press, Toledo, España, pp. 11-17, 1997.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ47": {
"title": "Design of a learning fuzzy production system to solve an NP-hard real-time assignment problem",
"authors": "J. Orozco, R. Cayssials, J. Santos and E. Ferro",
"year": "1996",
"desc": "Proc. 8th Euromicro Workshop on Real-Time Systems, IEEE Computer Society Press, pp. 146-150, L 'Aquila, Italia, 1996.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ48": {
"title": "Tuning parameters to improve a heuristic method: More and better solutions to an NP-hard real-time problem",
"authors": "E. Ferro, J. Santos, J. Orozco y R. Cayssials",
"year": "1996",
"desc": "Proc. 8th Euromicro Workshop on Real-Time Systems, IEEE Computer Society Press, pp. 47-51, L'Aquila, Italia, 1996.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ49": {
"title": "On the Priority Mechanism of 802.4 in Hard Real-Time Factory Communications",
"authors": "J. Santos and J. Orozco",
"year": "1994",
"desc": "Proc. IEEE International Symposium on Industrial Electronics, IEEE, pp. 281-285, 1994.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ50": {
"title": "The 802.5 Priority Mechanism in RMS Hard Real-Time Applications",
"authors": "J. Santos, M. L. Gastaminza, J. Orozco y C. Matrángolo",
"year": "1994",
"desc": "Computer Communications (Butterworth-Heinemann), 17, 6, pp. 439-442, 1994.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ51": {
"title": "Rate Monotonic Scheduling in Hard Real-Time Systems",
"authors": "J. Santos y J.Orozco",
"year": "1993",
"desc": "Information Processing Letters (Elsevier), 48, 1, pp 39-45, Oct. 1993.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ52": {
"title": "Priorities and protocols in hard real-time LANs",
"authors": "J. Santos, M. Gastaminza, J. Orozco, D. Picardi y O. Alimenti",
"year": "1991",
"desc": "Computer Communications (Butterworth-Heinemann), Nov. 1991.",
"authors_ref": [],
"section": "publications",
"links": []
},
"publ53": {
"title": "Performance evaluation of standard LAN protocols",
"authors": "J. Santos, J. Orozco and O. Alimenti",
"year": "1989",
"desc": "Proc. INFOCOM '89, IEEE Computer Society Press, pp 1020=1028, Ottawa, 1989.",
"authors_ref": [],
"section": "publications",
"links": []
},
"ir01": {
"title": "Flying Real-Time Network for Disaster Assistance",
"authors": " Rodrigo Santos, Javier Orozco, Vinicius Petrucci, Daniel Mosse",
"year": "2016",
"desc": "",
"authors_ref": [],
"section": "internal",
"links": []
},
"ir02": {
"title": "DEBARE: A REQUIREMENTS-BASED METHOD FOR DESIGNING SMALL CYBER-PHYSICAL SYSTEMS",
"authors": "Leo Ordinez,Rodrigo Santos, Gabriel Eggly",
"year": "2015",
"desc": "",
"authors_ref": [],
"section": "internal",
"links": []
},
"ir03": {
"title": "A Stochastic Approach for Modeling Message Dissemination in Opportunistic Networks",
"authors": " Javier Orozco, Rodrigo Santos, Sergio Ochoa, Roc Meseguer,",
"year": "2016",
"desc": "",
"authors_ref": [],
"section": "internal",
"links": []
},
"mt01": {
"title": "Ingeniería de Sistemas de Tiempo Real: Monitoreo",
"authors": "Omar Alimenti",
"year": "1999",
"desc": "Supervised by Jorge Santos.",
"authors_ref": [],
"section": "master",
"links": []
},
"mt02": {
"title": "Arquitecturas Flexibles para Sistemas de Control de Tiempo Real",
"authors": "Martín Leandro Duval",
"year": "2012",
"desc": "Supervised by Ricardo Cayssials and Javier Orozco",
"authors_ref": [],
"section": "master",
"links": []
},
"mt03": {
"title": "Redes de Control en Ambientes Industriales: Plataforma de evaluación de sistemas distribuidos en tiempo real",
"authors": "Adriana Michelis",
"year": "2015",