forked from NicolasGensollen/seminaire_vincent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbeamer.bib
More file actions
1723 lines (1704 loc) · 94.2 KB
/
Copy pathbeamer.bib
File metadata and controls
1723 lines (1704 loc) · 94.2 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
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
@article{Gensollen2014,
abstract = {In a smart grid environment, we study coalition formation of prosumers that aim at entering the energy market. It is paramount for the grid operation that the energy producers are able to sustain the grid demand in terms of stability and minimum production requirement. We design an algorithm that seeks to form coalitions that will meet both of these requirements: a minimum energy level for the coalitions and a steady production level which leads to finding uncorrelated sources of energy to form a coalition. We propose an algorithm that uses graph tools such as correlation graphs or clique percolation to form coalitions that meet such complex constraints. We validate the algorithm against a random procedure and show that, it not only performs better in term of social welfare for the power grid, but also that it is more robust against unforeseen production variations due to changing weather conditions for instance.},
archivePrefix = {arXiv},
arxivId = {1410.8776},
author = {Gensollen, Nicolas and Gauthier, Vincent and Marot, Michel and Becker, Monique},
eprint = {1410.8776},
file = {:C$\backslash$:/Users/gensolle/Desktop/Coalition Formation Algorithm of Prosumers in a Smart Grid Environment.pdf:pdf},
month = oct,
pages = {6},
title = {{Coalition Formation Algorithm of Prosumers in a Smart Grid Environment}},
url = {http://arxiv.org/abs/1410.8776},
year = {2014}
}
@article{Outlook,
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Unknown - 2007 - OUTLOOK OF ENERGY STORAGE.pdf:pdf},
number = {January 2004},
title = {{OUTLOOK OF ENERGY STORAGE}},
year = {2007}
}
@article{Kein2009,
author = {Kein, Helena},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/Simulated Annealing for Multi-Agent Coalition Formation.pdf:pdf},
pages = {30--39},
title = {{Simulated Annealing for Multi-agent Coalition Formation}},
year = {2009}
}
@article{Pham2005,
author = {Pham, D. T. and Dimov, S. S. and Nguyen, C. D.},
doi = {10.1243/095440605X8298},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/Selection of K in K-means Clustering.pdf:pdf},
issn = {0954-4062},
journal = {Proceedings of the Institution of Mechanical Engineers, Part C: Journal of Mechanical Engineering Science},
keywords = {cluster number selection,clustering,k -means algorithm},
month = jan,
number = {1},
pages = {103--119},
title = {{Selection of K in K-means clustering}},
url = {http://pic.sagepub.com/lookup/doi/10.1243/095440605X8298},
volume = {219},
year = {2005}
}
@article{Dans2007,
author = {Dans, G and Science, Forest},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/Rayonnement solaire.pdf:pdf},
title = {{Rayonnement solaire}},
volume = {360},
year = {2007}
}
@article{Braun,
author = {Braun, Martin},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Braun - Unknown - Virtual Power Plants in Real Applications Pilot Demonstrations in Spain and England as part of the European project FENIX.pdf:pdf},
number = {561},
title = {{Virtual Power Plants in Real Applications Pilot Demonstrations in Spain and England as part of the European project FENIX}},
volume = {49}
}
@article{Olfati-Saber2007,
author = {Olfati-Saber, Reza and Fax, J. Alex and Murray, Richard M.},
doi = {10.1109/JPROC.2006.887293},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Olfati-Saber, Fax, Murray - 2007 - Consensus and Cooperation in Networked Multi-Agent Systems.pdf:pdf},
issn = {0018-9219},
journal = {Proceedings of the IEEE},
month = jan,
number = {1},
pages = {215--233},
title = {{Consensus and Cooperation in Networked Multi-Agent Systems}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=4118472},
volume = {95},
year = {2007}
}
@article{Zhang2012,
author = {Zhang, Ziang and Member, Student and Chow, Mo-yuen},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Zhang, Member, Chow - 2012 - Cost Consensus Algorithm Under Different Communication Network Topologies in a Smart Grid.pdf:pdf},
number = {4},
pages = {1761--1768},
title = {{Cost Consensus Algorithm Under Different Communication Network Topologies in a Smart Grid}},
volume = {27},
year = {2012}
}
@article{Rson2000,
author = {Rson, Kate S L A and As, Tuom and Holm, W Sand},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/Anytime Coalition Structure Generation An average Case Study.pdf:pdf},
title = {{Anytime coalition structure generation : an average case study}},
volume = {12},
year = {2000}
}
@article{Sandholm1999,
author = {Sandholm, Tuomas and Larson, Kate and Andersson, Martin and Shehory, Onn and Tohm, Fernando},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/Coalition Structure Generation with worst Case guarantees.pdf:pdf},
keywords = {ai,anytime algorithm,coalition formation,distributed,game theory,multiagent systems,negotiation,resource-bounded reasoning},
pages = {209--238},
title = {{Coalition structure generation with worst case}},
volume = {111},
year = {1999}
}
@article{Sen2000,
author = {Sen, Sandip and Dutta, Partha Sarathi},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/Searching for Optimal Coalition Structures.pdf:pdf},
isbn = {0769506259},
pages = {1--6},
title = {{Searching for optimal coalition structures}},
year = {2000}
}
@article{Dang,
author = {Dang, Viet Dung and Jennings, Nicholas R},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/Generating Coalition Structures with Finite Bound from the optimal Guarantees.pdf:pdf},
title = {{Generating coalition structures with finite bound from the optimal guarantees}}
}
@article{Olfati-Saber2004,
author = {Olfati-Saber, R. and Murray, R.M.},
doi = {10.1109/TAC.2004.834113},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Olfati-Saber, Murray - 2004 - Consensus Problems in Networks of Agents With Switching Topology and Time-Delays.pdf:pdf},
issn = {0018-9286},
journal = {IEEE Transactions on Automatic Control},
keywords = {algebraic graph,consensus problems,digraph theory,graph laplacians,ing systems,networks of autonomous agents,networks with time-delays,switch-,theory},
month = sep,
number = {9},
pages = {1520--1533},
title = {{Consensus Problems in Networks of Agents With Switching Topology and Time-Delays}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=1333204},
volume = {49},
year = {2004}
}
@ARTICLE{2013arXiv1305.4096G,
author = {{Gensollen}, N. and {Gauthier}, V. and {Marot}, M. and {Becker}, M.
},
title = "{Modeling and optimizing a distributed power network : A complex system approach of the prosumer management in the smart grid}",
journal = {ArXiv e-prints},
archivePrefix = "arXiv",
eprint = {1305.4096},
keywords = {Computer Science - Systems and Control},
year = 2013,
month = may,
adsurl = {http://adsabs.harvard.edu/abs/2013arXiv1305.4096G},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@article{Saad2011,
author = {Saad, Walid and Han, Zhu and Poor, H. Vincent},
doi = {10.1109/iccw.2011.5963577},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Saad, Han, Poor - 2011 - Coalitional Game Theory for Cooperative Micro-Grid Distribution Networks.pdf:pdf},
isbn = {978-1-61284-954-6},
journal = {2011 IEEE International Conference on Communications Workshops (ICC)},
month = jun,
pages = {1--5},
publisher = {Ieee},
title = {{Coalitional Game Theory for Cooperative Micro-Grid Distribution Networks}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=5963577},
year = {2011}
}
@article{Saad2009,
author = {Saad, Walid and Han, Zhu},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Saad, Han - 2009 - A Distributed Coalition Formation Framework for Fair User Cooperation in Wireless Networks.pdf:pdf},
keywords = {coalition formation,coalitional games,cooperation,game theory},
number = {May 2008},
title = {{A Distributed Coalition Formation Framework for Fair User Cooperation in Wireless Networks}},
year = {2009}
}
@article{Saad,
author = {Saad, Walid and Han, Zhu and Poor, H Vincent and Bas, Tamer},
file = {:C$\backslash$:/Users/gensolle/Desktop/Game Theoretic Methods for the Smart Grid.pdf:pdf},
title = {{Game Theoretic Methods for the Smart Grid}}
}
@article{Li2011,
author = {Li, Mingyang and Member, Student and Luh, Peter B and Litvinov, Eugene and Member, Senior},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Li et al. - 2011 - Analysis of a Partially Decentralized Framework for Operating Future Power Systems.pdf:pdf},
isbn = {9781457710025},
pages = {1--6},
title = {{Analysis of a Partially Decentralized Framework for Operating Future Power Systems}},
year = {2011}
}
@book{Rekioua2012,
address = {London},
author = {Rekioua, Djamila and Matagne, Ernest},
doi = {10.1007/978-1-4471-2403-0},
file = {:C$\backslash$:/Users/gensolle/Desktop/Modeling of Solar Irradiance and Cells.pdf:pdf},
isbn = {978-1-4471-2348-4},
publisher = {Springer London},
series = {Green Energy and Technology},
title = {{Optimization of Photovoltaic Power Systems}},
url = {http://link.springer.com/10.1007/978-1-4471-2403-0},
year = {2012}
}
@article{Aguiar2012,
author = {Aguiar, Javier M and Calavia, Lorena and Cook, Diane J and Chinarro, David and Science, Computer and Madrid, De},
doi = {10.3390/s120911571},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/A Study of the Relationship between Weather Variables and Electric Power Demand inside a Smart Grid Smart World Framework.pdf:pdf},
pages = {11571--11591},
title = {{A Study of the Relationship between Weather Variables and Electric Power Demand inside a Smart Grid/Smart World Framework}},
year = {2012}
}
@article{Feinberg,
author = {Feinberg, Eugene A and Genethliou, Dora},
file = {:C$\backslash$:/Users/gensolle/Desktop/Load Forecasting.pdf:pdf},
keywords = {artificial intelligence,forecasting,load,regression,statistics},
pages = {269--285},
title = {{Chapter 12 LOAD FORECASTING}}
}
@article{Billinton1996,
author = {Billinton, R. and Chen, Hua and Ghajar, R.},
doi = {10.1016/0026-2714(95)00154-9},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Billinton, Chen, Ghajar - 1996 - Time-series models for reliability evaluation of power systems including wind energy.pdf:pdf},
issn = {00262714},
journal = {Microelectronics Reliability},
month = sep,
number = {9},
pages = {1253--1261},
title = {{Time-series models for reliability evaluation of power systems including wind energy}},
url = {http://linkinghub.elsevier.com/retrieve/pii/0026271495001549},
volume = {36},
year = {1996}
}
@article{Brown,
author = {Barbara G. {Brown}, Richard W. {Katz}, Allan H. {Murphy}},
file = {:C$\backslash$:/Users/gensolle/Desktop/Time Series Models to Simulate and Forecast Wind Speed and Wind Power.pdf:pdf},
title = {{Time Series Models to Simulate and Forecast Wind Speed and Wind Power.pdf}}
}
@article{Dans2007,
author = {Dans, G and Science, Forest},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/Rayonnement solaire.pdf:pdf},
title = {{Rayonnement solaire}},
volume = {360},
year = {2007}
}
@article{Pahwa,
archivePrefix = {arXiv},
arxivId = {arXiv:1212.5620v1},
author = {Pahwa, S and Scoglio, C and Schulz, N},
eprint = {arXiv:1212.5620v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Pahwa, Scoglio, Schulz - Unknown - Topological Analysis and Mitigation Strategies for Cascading Failures in Power Grid Networks.pdf:pdf},
title = {{Topological Analysis and Mitigation Strategies for Cascading Failures in Power Grid Networks}}
}
@article{Erol-kantarci2011,
author = {Erol-kantarci, Melike and Kantarci, Burak and Mouftah, Hussein T},
file = {:C$\backslash$:/Users/gensolle/Desktop/Reliable Overlay Topology Design for Smart Microgrid Network.pdf:pdf},
number = {October},
pages = {38--43},
title = {{Reliable Overlay Topology Design for the Smart Microgrid Network}},
year = {2011}
}
@article{Rathnayaka2012,
address = {New York, New York, USA},
author = {Rathnayaka, a. J. Dinusha and Potdar, Vidyasagar and Ou, Monica H.},
doi = {10.1145/2381716.2381808},
file = {:C$\backslash$:/Users/gensolle/Desktop/Prosumer Management in Socio-technical Smart Grid.pdf:pdf},
isbn = {9781450311854},
journal = {Proceedings of the CUBE International Information Technology Conference on - CUBE '12},
keywords = {energy sharing,prosumer,smart grid},
pages = {483},
publisher = {ACM Press},
title = {{Prosumer management in socio-technical smart grid}},
url = {http://dl.acm.org/citation.cfm?doid=2381716.2381808},
year = {2012}
}
@article{Ramchurn,
author = {Ramchurn, Sarvapali D and Vytelingum, Perukrishnen and Rogers, Alex and Jennings, Nicholas R},
file = {:C$\backslash$:/Users/gensolle/Desktop/Putting the Smarts into the smart Grid A Grand Challenge for Artificial Intelligence.pdf:pdf},
title = {{Putting the Smarts into the Smart Grid : A Grand Challenge for Artificial Intelligence}}
}
@article{Zhang2012,
author = {Zhang, Ziang and Member, Student and Chow, Mo-yuen},
file = {:C$\backslash$:/Users/gensolle/Desktop/Convergence Analysis of the Incremental Cost Consensus Algorithm under Different Communication Network Topologies in a Smart Grid.pdf:pdf},
number = {4},
pages = {1761--1768},
title = {{Cost Consensus Algorithm Under Different Communication Network Topologies in a Smart Grid}},
volume = {27},
year = {2012}
}
@article{Mihailescu,
author = {Mihailescu, Radu-casian and Vasirani, Matteo and Ossowski, Sascha},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/An organizational approach to agent-based virtual power stations via coalitional games.pdf:pdf},
title = {{An organizational approach to agent-based virtual power stations via coalitional games}}
}
@article{Voltage,
author = {Voltage, T H E and On, Control and Distribution, M V and With, Networks and Units, Aggregated D G},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/The Voltage Control on MV Distribution Networks with Aggregated DG Units (VPP).pdf:pdf},
number = {1},
title = {{THE VOLTAGE CONTROL ON MV DISTRIBUTION NETWORKS WITH}}
}
@article{Kota2011,
author = {Kota, Ramachandra and Rogers, Alex and Jennings, Nicholas R},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/Cooperatives of Distributed Energy Resources for Efficient Virtual Power Plants.pdf:pdf},
keywords = {coalition forma-,energy and emissions,incentives for cooperation},
number = {Aamas},
pages = {787--794},
title = {{Cooperatives of Distributed Energy Resources for Efficient Virtual Power Plants}},
year = {2011}
}
@article{Braun,
author = {Braun, Martin},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Braun - Unknown - Virtual Power Plants in Real Applications Pilot Demonstrations in Spain and England as part of the European project FENIX.pdf:pdf},
number = {561},
title = {{Virtual Power Plants in Real Applications Pilot Demonstrations in Spain and England as part of the European project FENIX}},
volume = {49}
}
@article{Transform2012,
author = {Transform, Fast Fourier},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/Virtual Power Plants Real Power.pdf:pdf},
number = {March},
pages = {1--2},
title = {{Virtual Power Plants , Real Power}},
year = {2012}
}
@article{Kuzle2011,
author = {Kuzle, Igor and Zdrili, Marko and Pand\v{z}i, Hrvoje},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/Virtual Power Plant Dispatch Optimization Using Linear Programming.pdf:pdf},
isbn = {9781424487820},
keywords = {-mixed-integer linear programming,optimization,renewable energy sources,virtual power plant},
pages = {1--4},
title = {{Virtual Power Plant Dispatch Optimization Using Linear Programming}},
year = {2011}
}
@article{Bistaffa,
author = {Bistaffa, Filippo and Farinelli, Alessandro and Rogers, Alex},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/Decentralized Stable Coalition Formation among energy consumers in the smart grid.pdf:pdf},
keywords = {decentralised coalition formation,energy,smart grid,stability},
title = {{Decentralised stable coalition formation among energy consumers in the smart grid ( Demonstration )}}
}
@article{Member2011,
author = {Member, Student and Mohammadi, M and Taghe, R},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Member, Mohammadi, Taghe - 2011 - Virtual Power Plant ( VPP ), Definition , Concept , Components and Types.pdf:pdf},
isbn = {9781424462551},
keywords = {-commercial vpp,cvpp,der,distributed energy,resources,technical vpp,tvpp,virtual power plant},
title = {{Virtual Power Plant ( VPP ), Definition , Concept , Components and Types}},
year = {2011}
}
@article{Braun,
author = {Braun, Martin},
file = {:C$\backslash$:/Users/gensolle/Desktop/Virtual Power Plants in Real Applications.pdf:pdf},
number = {561},
title = {{Virtual Power Plants in Real Applications Pilot Demonstrations in Spain and England as part of the European project FENIX}},
volume = {49}
}
@article{Lasseter2011,
author = {Lasseter, By Robert H},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/Smart Distribution Coupled Microgrids.pdf:pdf},
number = {6},
title = {{Smart Distribution : Coupled Microgrids}},
volume = {99},
year = {2011}
}
@article{Heydt2010,
author = {Heydt, Gerald Thomas and Ieee, Life Fellow and Zheng, Jim P and Ieee, Member and Dale, Steiner J and Ieee, Fellow},
file = {:C$\backslash$:/Users/gensolle/Desktop/The Future Renewable Electric Energy Delivery and Management (FREEDM) System The Energy Internet.pdf:pdf},
keywords = {distributed generation,distribution automation},
title = {{Energy Delivery and Management ( FREEDM ) System : The Energy Internet}},
year = {2010}
}
@article{Gao2012,
author = {Gao, Jingcheng and Xiao, Yang and Liu, Jing and Liang, Wei and Chen, C.L. Philip},
doi = {10.1016/j.future.2011.04.014},
file = {:C$\backslash$:/Users/gensolle/Desktop/A Survey of communication networking in Smart Grids.pdf:pdf},
issn = {0167739X},
journal = {Future Generation Computer Systems},
month = feb,
number = {2},
pages = {391--404},
publisher = {Elsevier B.V.},
title = {{A survey of communication/networking in Smart Grids}},
url = {http://linkinghub.elsevier.com/retrieve/pii/S0167739X11000653},
volume = {28},
year = {2012}
}
@article{Negeri2012,
author = {Negeri, Ebisa and Baken, Nico},
doi = {10.5220/0003952500730078},
file = {:C$\backslash$:/Users/gensolle/Desktop/Architecting the Smart Grid as a Holarchy.pdf:pdf},
isbn = {978-989-8565-09-9},
journal = {Proceedings of the 1st International Conference on Smart Grids and Green IT Systems},
pages = {73--78},
publisher = {SciTePress - Science and and Technology Publications},
title = {{Architecting the Smart Grid As a Holarchy}},
url = {http://www.scitepress.org/DigitalLibrary/Link.aspx?doi=10.5220/0003952500730078},
year = {2012}
}
@article{Bakken2011,
author = {Bakken, David E. and Bose, Anjan and Hauser, Carl H. and Whitehead, David E. and Zweigle, Gregary C.},
doi = {10.1109/JPROC.2011.2116110},
file = {:C$\backslash$:/Users/gensolle/Desktop/Smart Generation and Transmission with coherent real-time data.pdf:pdf},
issn = {0018-9219},
journal = {Proceedings of the IEEE},
keywords = {bulk,middleware,smart grid,synchrophasor},
month = jun,
number = {6},
pages = {928--951},
title = {{Smart Generation and Transmission With Coherent, Real-Time Data}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=5768095},
volume = {99},
year = {2011}
}
@article{Motter2013,
archivePrefix = {arXiv},
arxivId = {arXiv:1302.1914v1},
author = {Motter, Adilson E and Myers, Seth A and Anghel, Marian and Nishikawa, Takashi},
doi = {10.1038/NPHYS2535},
eprint = {arXiv:1302.1914v1},
file = {:C$\backslash$:/Users/gensolle/Desktop/Spontaneous synchrony in power grid networks.pdf:pdf},
title = {{Spontaneous synchrony in power-grid networks}},
volume = {2013},
year = {2013}
}
@article{Saad,
archivePrefix = {arXiv},
arxivId = {arXiv:0802.2159v1},
author = {Saad, Walid and Han, Zhu and Hj\o rungnes, Are},
eprint = {arXiv:0802.2159v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Saad, Han, Hj\o rungnes - Unknown - A Distributed Merge and Split Algorithm for Fair Cooperation in Wireless Networks.pdf:pdf},
title = {{A Distributed Merge and Split Algorithm for Fair Cooperation in Wireless Networks}}
}
@article{Dorfler2013,
abstract = {The emergence of synchronization in a network of coupled oscillators is a fascinating topic in various scientific disciplines. A widely adopted model of a coupled oscillator network is characterized by a population of heterogeneous phase oscillators, a graph describing the interaction among them, and diffusive and sinusoidal coupling. It is known that a strongly coupled and sufficiently homogeneous network synchronizes, but the exact threshold from incoherence to synchrony is unknown. Here, we present a unique, concise, and closed-form condition for synchronization of the fully nonlinear, nonequilibrium, and dynamic network. Our synchronization condition can be stated elegantly in terms of the network topology and parameters or equivalently in terms of an intuitive, linear, and static auxiliary system. Our results significantly improve upon the existing conditions advocated thus far, they are provably exact for various interesting network topologies and parameters; they are statistically correct for almost all networks; and they can be applied equally to synchronization phenomena arising in physics and biology as well as in engineered oscillator networks, such as electrical power networks. We illustrate the validity, the accuracy, and the practical applicability of our results in complex network scenarios and in smart grid applications.},
author = {D\"{o}rfler, Florian and Chertkov, Michael and Bullo, Francesco},
doi = {10.1073/pnas.1212134110},
file = {:C$\backslash$:/Users/gensolle/Desktop/Synchronization in Complex Oscillator Networks and Smart Grids.pdf:pdf},
issn = {1091-6490},
journal = {Proceedings of the National Academy of Sciences of the United States of America},
month = feb,
number = {6},
pages = {2005--10},
pmid = {23319658},
title = {{Synchronization in complex oscillator networks and smart grids.}},
url = {http://www.ncbi.nlm.nih.gov/pubmed/23319658},
volume = {110},
year = {2013}
}
@article{Engler,
author = {Engler, A and Energieversorgungstechnik, Solare},
file = {:C$\backslash$:/Users/gensolle/Desktop/Control of Parallel Operating Battery Inverters.pdf:pdf},
number = {49},
pages = {1--4},
title = {{Control of parallel operating battery inverters}}
}
@article{Li2009,
author = {Li, Yun Wei and Kao, Ching-nan},
doi = {10.1109/TPEL.2009.2022828},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Li, Kao - 2009 - An Accurate Power Control Strategy for Power-Electronics-Interfaced Distributed Generation Units Operating in a Low-Voltage Multibus Microgrid.pdf:pdf},
issn = {0885-8993},
journal = {IEEE Transactions on Power Electronics},
month = dec,
number = {12},
pages = {2977--2988},
title = {{An Accurate Power Control Strategy for Power-Electronics-Interfaced Distributed Generation Units Operating in a Low-Voltage Multibus Microgrid}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=5200415},
volume = {24},
year = {2009}
}
@article{Brummitt2012,
abstract = {Understanding how interdependence among systems affects cascading behaviors is increasingly important across many fields of science and engineering. Inspired by cascades of load shedding in coupled electric grids and other infrastructure, we study the Bak-Tang-Wiesenfeld sandpile model on modular random graphs and on graphs based on actual, interdependent power grids. Starting from two isolated networks, adding some connectivity between them is beneficial, for it suppresses the largest cascades in each system. Too much interconnectivity, however, becomes detrimental for two reasons. First, interconnections open pathways for neighboring networks to inflict large cascades. Second, as in real infrastructure, new interconnections increase capacity and total possible load, which fuels even larger cascades. Using a multitype branching process and simulations we show these effects and estimate the optimal level of interconnectivity that balances their trade-offs. Such equilibria could allow, for example, power grid owners to minimize the largest cascades in their grid. We also show that asymmetric capacity among interdependent networks affects the optimal connectivity that each prefers and may lead to an arms race for greater capacity. Our multitype branching process framework provides building blocks for better prediction of cascading processes on modular random graphs and on multitype networks in general.},
author = {Brummitt, Charles D and D'Souza, Raissa M and Leicht, E a},
doi = {10.1073/pnas.1110586109},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Brummitt, D'Souza, Leicht - 2012 - Suppressing cascades of load in interdependent networks.pdf:pdf},
issn = {1091-6490},
journal = {Proceedings of the National Academy of Sciences of the United States of America},
month = mar,
number = {12},
pages = {E680--9},
pmid = {22355144},
title = {{Suppressing cascades of load in interdependent networks.}},
url = {http://www.pubmedcentral.nih.gov/articlerender.fcgi?artid=3311366\&tool=pmcentrez\&rendertype=abstract},
volume = {109},
year = {2012}
}
@article{Buhl2004,
author = {Buhl, J. and Gautrais, J. and Sol�, R. V. and Kuntz, P. and Valverde, S. and Deneubourg, J. L. and Theraulaz, G.},
doi = {10.1140/epjb/e2004-00364-9},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Buhl et al. - 2004 - Efficiency and robustness in ant networks of galleries.pdf:pdf},
issn = {1434-6028},
journal = {The European Physical Journal B},
month = nov,
number = {1},
pages = {123--129},
title = {{Efficiency and robustness in ant networks of galleries}},
url = {http://www.springerlink.com/index/10.1140/epjb/e2004-00364-9},
volume = {42},
year = {2004}
}
@article{Buldyrev2009,
archivePrefix = {arXiv},
arxivId = {arXiv:0907.1182v1},
author = {Buldyrev, Sergey V and Parshani, Roni and Paul, Gerald and Stanley, H Eugene and Havlin, Shlomo},
eprint = {arXiv:0907.1182v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Buldyrev et al. - 2009 - Catastrophic cascade of failures in interdependent networks.pdf:pdf},
pages = {1--13},
title = {{Catastrophic cascade of failures in interdependent networks}},
year = {2009}
}
@article{Chassin2005,
author = {Chassin, David P and Posse, Christian},
file = {:C$\backslash$:/Users/gensolle/Desktop/Evaluating North American Electric Grid Reliability Using the Barabasi Albert Network Model.pdf:pdf},
keywords = {network robustness,power system reliability,scale-free networks},
number = {February},
title = {{Evaluating North American Electric Grid Reliability Using the Barab\'{a}si-Albert Network Model}},
year = {2005}
}
@article{Crucitti2004,
author = {Crucitti, Paolo and Latora, Vito and Marchiori, Massimo},
doi = {10.1103/PhysRevE.69.045104},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Crucitti, Latora, Marchiori - 2004 - Model for cascading failures in complex networks.pdf:pdf},
issn = {1539-3755},
journal = {Physical Review E},
month = apr,
number = {4},
pages = {045104},
title = {{Model for cascading failures in complex networks}},
url = {http://link.aps.org/doi/10.1103/PhysRevE.69.045104},
volume = {69},
year = {2004}
}
@article{Gai2010,
author = {Gai, Prasanna and Kapadia, Sujit},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Gai, Kapadia - 2010 - Working Paper No . 383 Contagion in financial networks.pdf:pdf},
keywords = {1,2,anu,au,australian national university and,bank of england,bankofengland,co,contagion,d85,edu,email,financial crises,g01,g21,gai,jel classification,kapadia,liquidity risk,network models,prasanna,sujit,systemic risk,uk},
number = {383},
title = {{Working Paper No . 383 Contagion in financial networks}},
year = {2010}
}
@article{Gao2011,
author = {Gao, Jianxi and Buldyrev, Sergey V. and Stanley, H. Eugene and Havlin, Shlomo},
doi = {10.1038/nphys2180},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Gao et al. - 2011 - Networks formed from interdependent networks.pdf:pdf},
issn = {1745-2473},
journal = {Nature Physics},
month = dec,
number = {1},
pages = {40--48},
publisher = {Nature Publishing Group},
title = {{Networks formed from interdependent networks}},
url = {http://www.nature.com/doifinder/10.1038/nphys2180},
volume = {8},
year = {2011}
}
@article{Han2011,
author = {Han, Pingping and Network, A Small-world},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Han, Network - 2011 - Analysis of Cascading Failures in Small-world Power Grid.pdf:pdf},
keywords = {-small-world power grid,heterogeneity,structural vulnerability},
number = {2},
pages = {99--104},
title = {{Analysis of Cascading Failures in Small-world Power Grid}},
volume = {1},
year = {2011}
}
@article{Hines2010,
abstract = {In order to identify the extent to which results from topological graph models are useful for modeling vulnerability in electricity infrastructure, we measure the susceptibility of power networks to random failures and directed attacks using three measures of vulnerability: characteristic path lengths, connectivity loss, and blackout sizes. The first two are purely topological metrics. The blackout size calculation results from a model of cascading failure in power networks. Testing the response of 40 areas within the Eastern U.S. power grid and a standard IEEE test case to a variety of attack/failure vectors indicates that directed attacks result in larger failures using all three vulnerability measures, but the attack-vectors that appear to cause the most damage depend on the measure chosen. While the topological metrics and the power grid model show some similar trends, the vulnerability metrics for individual simulations show only a mild correlation. We conclude that evaluating vulnerability in power networks using purely topological metrics can be misleading.},
author = {Hines, Paul and Cotilla-Sanchez, Eduardo and Blumsack, Seth},
doi = {10.1063/1.3489887},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Hines, Cotilla-Sanchez, Blumsack - 2010 - Do topological models provide good information about electricity infrastructure vulnerability.pdf:pdf},
issn = {1089-7682},
journal = {Chaos (Woodbury, N.Y.)},
month = sep,
number = {3},
pages = {033122},
pmid = {20887062},
title = {{Do topological models provide good information about electricity infrastructure vulnerability?}},
url = {http://www.ncbi.nlm.nih.gov/pubmed/20887062},
volume = {20},
year = {2010}
}
@article{Hurd2012,
archivePrefix = {arXiv},
arxivId = {arXiv:1211.5708v1},
author = {Hurd, T R and Gleeson, James P},
eprint = {arXiv:1211.5708v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Hurd, Gleeson - 2012 - On Watts ’ Cascade Model with Random Link Weights.pdf:pdf},
keywords = {05c80,05c82,90b15,91b74,91g50,ams subject classification,banking network,cascade condition,contagion,domino effect,information cascade,percolation,random graph,stochastic network,systemic risk},
pages = {1--24},
title = {{On Watts ’ Cascade Model with Random Link Weights}},
year = {2012}
}
@article{Leicht2009,
archivePrefix = {arXiv},
arxivId = {arXiv:0907.0894v1},
author = {Leicht, E A},
eprint = {arXiv:0907.0894v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Leicht - 2009 - Percolation on interacting networks.pdf:pdf},
pages = {2--6},
title = {{Percolation on interacting networks}},
volume = {2},
year = {2009}
}
@article{Menck2012,
author = {Menck, Peter J},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Menck - 2012 - Topological Identification of Weak Points in Power Grids.pdf:pdf},
pages = {144--147},
title = {{Topological Identification of Weak Points in Power Grids}},
year = {2012}
}
@article{Nakarado,
archivePrefix = {arXiv},
arxivId = {arXiv:cond-mat/0401084v1},
author = {Nakarado, Gary L},
eprint = {0401084v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Nakarado - Unknown - Structural Vulnerability of the North American Power Grid.pdf:pdf},
pages = {1--10},
primaryClass = {arXiv:cond-mat},
title = {{Structural Vulnerability of the North American Power Grid}}
}
@article{Pahwa,
archivePrefix = {arXiv},
arxivId = {arXiv:1212.5620v1},
author = {Pahwa, S and Scoglio, C and Schulz, N},
eprint = {arXiv:1212.5620v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Pahwa, Scoglio, Schulz - Unknown - Topological Analysis and Mitigation Strategies for Cascading Failures in Power Grid Networks.pdf:pdf},
title = {{Topological Analysis and Mitigation Strategies for Cascading Failures in Power Grid Networks}}
}
@article{Rosas-Casals2007,
author = {Rosas-Casals, Mart\'{\i} and Valverde, Sergi and Sol\'{e}, Ricard V.},
doi = {10.1142/S0218127407018531},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Rosas-Casals, Valverde, Sol\'{e} - 2007 - Topological Vulnerability of the European Power Grid Under Errors and Attacks.pdf:pdf},
issn = {0218-1274},
journal = {International Journal of Bifurcation and Chaos},
keywords = {complex networks,fragility,power grid,small world},
month = jul,
number = {07},
pages = {2465--2475},
title = {{Topological Vulnerability of the European Power Grid Under Errors and Attacks}},
url = {http://www.worldscientific.com/doi/abs/10.1142/S0218127407018531},
volume = {17},
year = {2007}
}
@article{Foundation1996,
author = {Foundation, A National Science},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Foundation - 1996 - Electric Power Transfer Capability Concepts , Applications , Sensitivity , Uncertainty.pdf:pdf},
title = {{Electric Power Transfer Capability : Concepts , Applications , Sensitivity , Uncertainty}},
year = {1996}
}
@article{Sachtjen2000,
abstract = {A simple model for a power transmission system is presented. In this model, disturbances of all sizes may occur. They are randomly triggered and have the characteristic behavior of avalanches. A single parameter describes the scaling of the avalanche size. This parameter combines a measure of closeness to the maximum load, size of transferred loads during an overloading event, and connectivity of the system. The probability distribution function of the size of the disturbance has power-scaling range with the exponent close to -1.},
author = {Sachtjen, Ml and Carreras, Ba and Lynch, Ve},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Sachtjen, Carreras, Lynch - 2000 - Disturbances in a power transmission system.pdf:pdf},
issn = {1063-651X},
journal = {Physical review. E, Statistical physics, plasmas, fluids, and related interdisciplinary topics},
month = may,
number = {5A},
pages = {4877--82},
pmid = {11031529},
title = {{Disturbances in a power transmission system}},
url = {http://www.ncbi.nlm.nih.gov/pubmed/11031529},
volume = {61},
year = {2000}
}
@article{Schneider,
archivePrefix = {arXiv},
arxivId = {arXiv:1106.3234v1},
author = {Schneider, Christian M and Ara, Nuno A M and Havlin, Shlomo and Herrmann, Hans J},
eprint = {arXiv:1106.3234v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Schneider et al. - Unknown - Towards designing robust coupled networks.pdf:pdf},
pages = {1--7},
title = {{Towards designing robust coupled networks}}
}
@article{Shao2010,
archivePrefix = {arXiv},
arxivId = {arXiv:1011.0234v1},
author = {Shao, Jia and Buldyrev, Sergey V and Havlin, Shlomo and Stanley, H Eugene},
eprint = {arXiv:1011.0234v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Shao et al. - 2010 - Cascade of failures in coupled network systems with multiple support-dependent relations.pdf:pdf},
pages = {1--19},
title = {{Cascade of failures in coupled network systems with multiple support-dependent relations}},
year = {2010}
}
@article{Wang2009,
author = {Wang, Jian-Wei and Rong, Li-Li},
doi = {10.1016/j.ssci.2009.02.002},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Wang, Rong - 2009 - Cascade-based attack vulnerability on the US power grid.pdf:pdf},
issn = {09257535},
journal = {Safety Science},
month = dec,
number = {10},
pages = {1332--1336},
title = {{Cascade-based attack vulnerability on the US power grid}},
url = {http://linkinghub.elsevier.com/retrieve/pii/S0925753509000174},
volume = {47},
year = {2009}
}
@article{Watts2002,
abstract = {The origin of large but rare cascades that are triggered by small initial shocks is a phenomenon that manifests itself as diversely as cultural fads, collective action, the diffusion of norms and innovations, and cascading failures in infrastructure and organizational networks. This paper presents a possible explanation of this phenomenon in terms of a sparse, random network of interacting agents whose decisions are determined by the actions of their neighbors according to a simple threshold rule. Two regimes are identified in which the network is susceptible to very large cascades-herein called global cascades-that occur very rarely. When cascade propagation is limited by the connectivity of the network, a power law distribution of cascade sizes is observed, analogous to the cluster size distribution in standard percolation theory and avalanches in self-organized criticality. But when the network is highly connected, cascade propagation is limited instead by the local stability of the nodes themselves, and the size distribution of cascades is bimodal, implying a more extreme kind of instability that is correspondingly harder to anticipate. In the first regime, where the distribution of network neighbors is highly skewed, it is found that the most connected nodes are far more likely than average nodes to trigger cascades, but not in the second regime. Finally, it is shown that heterogeneity plays an ambiguous role in determining a system's stability: increasingly heterogeneous thresholds make the system more vulnerable to global cascades; but an increasingly heterogeneous degree distribution makes it less vulnerable.},
author = {Watts, Duncan J},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Watts - 2002 - A simple model of global cascades on random networks.pdf:pdf},
issn = {0027-8424},
journal = {Proceedings of the National Academy of Sciences of the United States of America},
month = apr,
number = {9},
pages = {5766--71},
pmid = {16578874},
title = {{A simple model of global cascades on random networks.}},
url = {http://www.pubmedcentral.nih.gov/articlerender.fcgi?artid=122850\&tool=pmcentrez\&rendertype=abstract},
volume = {99},
year = {2002}
}
@article{Barth,
archivePrefix = {arXiv},
arxivId = {arXiv:1010.0302v2},
author = {Barth, Marc},
eprint = {arXiv:1010.0302v2},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Barth - Unknown - Spatial Networks.pdf:pdf},
pages = {1--86},
title = {{Spatial Networks}}
}
@article{Boccaletti2006,
author = {Boccaletti, S and Latora, V and Moreno, Y and Chavez, M and Hwang, D},
doi = {10.1016/j.physrep.2005.10.009},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Boccaletti et al. - 2006 - Complex networks Structure and dynamics.pdf:pdf},
issn = {03701573},
journal = {Physics Reports},
month = feb,
number = {4-5},
pages = {175--308},
title = {{Complex networks: Structure and dynamics}},
url = {http://linkinghub.elsevier.com/retrieve/pii/S037015730500462X},
volume = {424},
year = {2006}
}
@article{Brandes2005,
author = {Brandes, Ulrik and Fleischer, Daniel},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Brandes, Fleischer - 2005 - Centrality Measures Based on Current Flow.pdf:pdf},
pages = {533--544},
title = {{Centrality Measures Based on Current Flow}},
year = {2005}
}
@article{Carmi2007,
abstract = {We study a map of the Internet (at the autonomous systems level), by introducing and using the method of k-shell decomposition and the methods of percolation theory and fractal geometry, to find a model for the structure of the Internet. In particular, our analysis uses information on the connectivity of the network shells to separate, in a unique (no parameters) way, the Internet into three subcomponents: (i) a nucleus that is a small ( approximately 100 nodes), very well connected globally distributed subgraph; (ii) a fractal subcomponent that is able to connect the bulk of the Internet without congesting the nucleus, with self-similar properties and critical exponents predicted from percolation theory; and (iii) dendrite-like structures, usually isolated nodes that are connected to the rest of the network through the nucleus only. We show that our method of decomposition is robust and provides insight into the underlying structure of the Internet and its functional consequences. Our approach of decomposing the network is general and also useful when studying other complex networks.},
author = {Carmi, Shai and Havlin, Shlomo and Kirkpatrick, Scott and Shavitt, Yuval and Shir, Eran},
doi = {10.1073/pnas.0701175104},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Carmi et al. - 2007 - A model of Internet topology using k-shell decomposition.pdf:pdf},
issn = {0027-8424},
journal = {Proceedings of the National Academy of Sciences of the United States of America},
month = jul,
number = {27},
pages = {11150--4},
pmid = {17586683},
title = {{A model of Internet topology using k-shell decomposition.}},
url = {http://www.pubmedcentral.nih.gov/articlerender.fcgi?artid=1896135\&tool=pmcentrez\&rendertype=abstract},
volume = {104},
year = {2007}
}
@article{Carvalho,
archivePrefix = {arXiv},
arxivId = {arXiv:1108.0025v3},
author = {Carvalho, Rui and Buzna, Lubos and Just, Wolfram and Helbing, Dirk and Arrowsmith, David K},
eprint = {arXiv:1108.0025v3},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Carvalho et al. - Unknown - Fair sharing of resources in a supply network with constraints.pdf:pdf},
pages = {1--15},
title = {{Fair sharing of resources in a supply network with constraints}}
}
@article{Cohen2007,
author = {Cohen, Reuven},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Cohen - 2007 - Complex Networks.pdf:pdf},
title = {{Complex Networks}},
year = {2007}
}
@article{Dame2002,
author = {Dame, Notre},
file = {:C$\backslash$:/Users/gensolle/Desktop/Statistical mechanics of complex networks.pdf:pdf},
number = {January},
title = {{Statistical mechanics of complex networks}},
volume = {74},
year = {2002}
}
@article{Farkas2001,
author = {Farkas, Ill\'{e}s and Der\'{e}nyi, Imre and Barab\'{a}si, Albert-L\'{a}szl\'{o} and Vicsek, Tam\'{a}s},
doi = {10.1103/PhysRevE.64.026704},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Farkas et al. - 2001 - Spectra of “real-world” graphs Beyond the semicircle law.pdf:pdf},
issn = {1063-651X},
journal = {Physical Review E},
month = jul,
number = {2},
pages = {1--12},
title = {{Spectra of “real-world” graphs: Beyond the semicircle law}},
url = {http://link.aps.org/doi/10.1103/PhysRevE.64.026704},
volume = {64},
year = {2001}
}
@article{Mantegna1999,
author = {Mantegna, R N},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Mantegna - 1999 - P HYSICAL J OURNAL B.pdf:pdf},
pages = {193--197},
title = {{P HYSICAL J OURNAL B}},
volume = {197},
year = {1999}
}
@article{Onnela2004,
author = {Onnela, J.-P. and Kaski, K. and Kertesz, J.},
doi = {10.1140/epjb/e2004-00128-7},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Onnela, Kaski, Kertesz - 2004 - Clustering and information in correlation based financial networks.pdf:pdf},
issn = {1434-6028},
journal = {The European Physical Journal B - Condensed Matter},
month = mar,
number = {2},
pages = {353--362},
title = {{Clustering and information in correlation based financial networks}},
url = {http://www.springerlink.com/openurl.asp?genre=article\&id=doi:10.1140/epjb/e2004-00128-7},
volume = {38},
year = {2004}
}
@article{Garas2008,
author = {Garas, a. and Argyrakis, P. and Havlin, S.},
doi = {10.1140/epjb/e2008-00237-3},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Garas, Argyrakis, Havlin - 2008 - The structural role of weak and strong links in a financial market network.pdf:pdf},
isbn = {2008002373},
issn = {1434-6028},
journal = {The European Physical Journal B},
month = jun,
number = {2},
pages = {265--271},
title = {{The structural role of weak and strong links in a financial market network}},
url = {http://www.springerlink.com/index/10.1140/epjb/e2008-00237-3},
volume = {63},
year = {2008}
}
@article{Lancichinetti,
archivePrefix = {arXiv},
arxivId = {arXiv:0802.1218v2},
author = {Lancichinetti, Andrea},
eprint = {arXiv:0802.1218v2},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/Detecting the overlapping and Hierarchical Community Structure in Complex Networks.pdf:pdf},
title = {{Detecting the overlapping and hierarchical community structure in complex networks}}
}
@article{Yang2014,
author = {Yang, Jaewon and Leskovec, Jure and Yang, Jaewon and Leskovec, Jure},
file = {:C$\backslash$:/Users/gensolle/Desktop/These/Scientific papers/Overlapping Communities Explain Core-Periphery Organization of Networks.pdf:pdf},
title = {{Overlapping Communities Explain Core-Periphery Core-Periphery Organization of Networks}},
year = {2014}
}
@article{Lee2010,
archivePrefix = {arXiv},
arxivId = {arXiv:1002.1827v2},
author = {Lee, Conrad and Reid, Fergal and Mcdaid, Aaron and Hurley, Neil},
eprint = {arXiv:1002.1827v2},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Lee et al. - 2010 - Detecting Highly Overlapping Community Structure by Greedy Clique Expansion.pdf:pdf},
isbn = {9781450302258},
keywords = {community assignment,complex networks,despite their proliferation,determine the perfor-,ing algorithm,it is difficult to,local cluster-,mance of caas for,on the one hand,overlapping,there is a lack,two reasons},
title = {{Detecting Highly Overlapping Community Structure by Greedy Clique Expansion}},
volume = {10},
year = {2010}
}
@article{Girvan2002,
abstract = {A number of recent studies have focused on the statistical properties of networked systems such as social networks and the Worldwide Web. Researchers have concentrated particularly on a few properties that seem to be common to many networks: the small-world property, power-law degree distributions, and network transitivity. In this article, we highlight another property that is found in many networks, the property of community structure, in which network nodes are joined together in tightly knit groups, between which there are only looser connections. We propose a method for detecting such communities, built around the idea of using centrality indices to find community boundaries. We test our method on computer-generated and real-world graphs whose community structure is already known and find that the method detects this known structure with high sensitivity and reliability. We also apply the method to two networks whose community structure is not well known--a collaboration network and a food web--and find that it detects significant and informative community divisions in both cases.},
author = {Girvan, M and Newman, M E J},
doi = {10.1073/pnas.122653799},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Girvan, Newman - 2002 - Community structure in social and biological networks.pdf:pdf},
issn = {0027-8424},
journal = {Proceedings of the National Academy of Sciences of the United States of America},
keywords = {Algorithms,Animals,Community Networks,Computer Simulation,Humans,Models, Theoretical,Nerve Net,Nerve Net: physiology,Neural Networks (Computer),Social Behavior},
month = jun,
number = {12},
pages = {7821--6},
pmid = {12060727},
title = {{Community structure in social and biological networks.}},
url = {http://www.pubmedcentral.nih.gov/articlerender.fcgi?artid=122977\&tool=pmcentrez\&rendertype=abstract},
volume = {99},
year = {2002}
}
@article{Hamad,
archivePrefix = {arXiv},
arxivId = {arXiv:1003.2191v1},
author = {Hamad, Ibrahim Abou and Israels, Brett and Rikvold, Per Arne and Poroseva, Svetlana V},
eprint = {arXiv:1003.2191v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Hamad et al. - Unknown - Spectral matrix methods for partitioning power grids Applications to the Italian and Floridian high-voltage networks.pdf:pdf},
keywords = {blackout prevention,cascading failure,graph partitioning,intentional islanding,net-,power grid,spectral matrix methods,work theory},
pages = {1--4},
title = {{Spectral matrix methods for partitioning power grids: Applications to the Italian and Floridian high-voltage networks}}
}
@article{Holme,
archivePrefix = {arXiv},
arxivId = {arXiv:1108.1780v2},
author = {Holme, Petter and Introduction, I and Neural, G},
eprint = {arXiv:1108.1780v2},
file = {:C$\backslash$:/Users/gensolle/Desktop/Temporal Networks.pdf:pdf},
pages = {1--28},
title = {{Temporal Networks}}
}
@article{Information2012,
author = {Information, Supplementary},
doi = {10.1038/NPHYS2327},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Information - 2012 - Controllability of of edge edge dynamics dynamics in in complex complex networks networks Controllability Controlling edge dynamics in complex networks Mot.pdf:pdf},
pages = {1--30},
title = {{Controllability of of edge edge dynamics dynamics in in complex complex networks networks Controllability Controlling edge dynamics in complex networks Motivation for}},
year = {2012}
}
@article{Latapy2008,
author = {Latapy, Matthieu and Magnien, Cl\'{e}mence and Vecchio, Nathalie Del},
doi = {10.1016/j.socnet.2007.04.006},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Latapy, Magnien, Vecchio - 2008 - Basic notions for the analysis of large two-mode networks.pdf:pdf},
issn = {03788733},
journal = {Social Networks},
keywords = {affiliation networks,bipartite graphs,complex networks,random networks,two-mode networks},
month = jan,
number = {1},
pages = {31--48},
title = {{Basic notions for the analysis of large two-mode networks}},
url = {http://linkinghub.elsevier.com/retrieve/pii/S0378873307000494},
volume = {30},
year = {2008}
}
@article{Matem,
archivePrefix = {arXiv},
arxivId = {arXiv:1210.5693v1},
author = {Matem, Facultad De},
eprint = {arXiv:1210.5693v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Matem - Unknown - Hierarchical clustering for graph visualization.pdf:pdf},
title = {{Hierarchical clustering for graph visualization}}
}
@article{Miorandi2010,
author = {Miorandi, Daniele and Pellegrini, Francesco De},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Miorandi, Pellegrini - 2010 - K-Shell Decomposition for Dynamic Complex Networks.pdf:pdf},
pages = {499--507},
title = {{K-Shell Decomposition for Dynamic Complex Networks}},
year = {2010}
}
@article{Nadakuditi,
archivePrefix = {arXiv},
arxivId = {arXiv:1208.1275v1},
author = {Nadakuditi, Raj Rao and Newman, M E J},
eprint = {arXiv:1208.1275v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Nadakuditi, Newman - Unknown - Spectra of random graphs with arbitrary expected degrees.pdf:pdf},
pages = {1--14},
title = {{Spectra of random graphs with arbitrary expected degrees}}
}
@article{Newman,
archivePrefix = {arXiv},
arxivId = {arXiv:cond-mat/0309045v1},
author = {Newman, M E J},
eprint = {0309045v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Newman - Unknown - A measure of betweenness centrality based on random walks.pdf:pdf},
pages = {1--15},
primaryClass = {arXiv:cond-mat},
title = {{A measure of betweenness centrality based on random walks}}
}
@article{Newmana,
archivePrefix = {arXiv},
arxivId = {arXiv:cond-mat/0407503v1},
author = {Newman, M E J},
eprint = {0407503v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Newman - Unknown - Analysis of weighted networks.pdf:pdf},
primaryClass = {arXiv:cond-mat},
title = {{Analysis of weighted networks}}
}
@article{Newmanb,
archivePrefix = {arXiv},
arxivId = {arXiv:physics/0602124v1},
author = {Newman, M E J},
eprint = {0602124v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Newman - Unknown - Modularity and community structure in networks.pdf:pdf},
primaryClass = {arXiv:physics},
title = {{Modularity and community structure in networks}}
}
@article{Newmanc,
archivePrefix = {arXiv},
arxivId = {arXiv:cond-mat/0303516v1},
author = {Newman, M E J},
eprint = {0303516v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Newman - Unknown - The structure and function of complex networks.pdf:pdf},
primaryClass = {arXiv:cond-mat},
title = {{The structure and function of complex networks}}
}
@article{Newmand,
archivePrefix = {arXiv},
arxivId = {arXiv:cond-mat/0007235v2},
author = {Newman, M E J and Strogatz, S H and Watts, D J},
eprint = {0007235v2},
file = {:C$\backslash$:/Users/gensolle/Desktop/Random Graphs with arbitrary degree distributions and their applications.pdf:pdf},
primaryClass = {arXiv:cond-mat},
title = {{Random graphs with arbitrary degree distributions and their applications}}
}
@article{Newman2008,
author = {Newman, Mark},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Newman - 2008 - The physics of networks.pdf:pdf},
keywords = {Physics Today, November 2008, p 33-38},
number = {November},
pages = {33--38},
title = {{The physics of networks}},
year = {2008}
}
@article{Olhede2012,
archivePrefix = {arXiv},
arxivId = {arXiv:1211.6537v1},
author = {Olhede, Sofia C and Wolfe, Patrick J},
eprint = {arXiv:1211.6537v1},
file = {:C$\backslash$:/Users/gensolle/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Olhede, Wolfe - 2012 - What is a Degree Distribution arXiv 1211 . 6537v1 math . ST 28 Nov 2012.pdf:pdf},
keywords = {1,2,3,4,and have,complex networks,from biology,important roles across the,in fields ranging,inference,network models play many,new tools for statistical,power laws,random graphs,recently given rise to,sciences,the single most studied,to computational social science},
pages = {1--18},
title = {{What is a Degree Distribution ? arXiv : 1211 . 6537v1 [ math . ST ] 28 Nov 2012}},
year = {2012}
}
@article{Volchenkov2011,