-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode_principal.js
1564 lines (1345 loc) · 48.8 KB
/
code_principal.js
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
/*
Electricite2050 1.0 <http://www.electricite-2050.fr/>
Copyright (c) 2017 Adrien Jeantet
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation version 3 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$(function() {
/* Définition de fonctions mathématiques */
function sum(numbers) {
var total = 0,
i;
for (i = 0; i < numbers.length; i += 1) {
total += numbers[i];
}
return total;
}
function sum3(numbers) {
var total = 0,
i;
for (i = 0; i < numbers.length; i += 1) {
total += numbers[i] * numbers[i];
}
return Math.sqrt(total);
}
function multiply(A1, A2) {
var Product = [];
for (var i = 0; i < A1.length; i++) {
Product[i] = A1[i] * A2[i];
}
return Product;
}
/* Générer le graph consommation */
function Conso_Chart(Consommation) {
return {
chart: {
renderTo: 'Consommation_Chart',
animation: false
},
title: {
text: 'Consommation Électrique Française' // Titre
},
// Adapter l'étiquette de chaque colonne en fonction des actions de l'utilisateur
tooltip: {
formatter: function() {
var index = this.colorIndex; //récupérer le numéro de colonne
var Stack = this.series.options.stack; //récupérer la pile (2015 ou 2050)
tempp2 = '<b>' + this.x + ' en ' + Stack + ': ' + this.y + ' TWh'; // Valeur en "année" : X TWh
if (Stack == 2015) {
// Pour 2015 on s'arrête là
return tempp2 + '</b>';
} else {
// Pour 2050
tempp2 += ' ' + comp(this.y, Consommation.valeur2015[index]) + '</b>'; // Comparaison à 2015
if (this.y >= Consommation.valeur2015[index]) {
if (index == 3) {
// Cas particulier des transports : on ne commente qu'en cas d'augmentation
tempp2 += '<br /><span style="color:#216be7">' + parseInt((this.y - Consommation.valeur2015[index]) / Consommation.unites[index]) + Consommation.unitext[index] + '</span>';
}
} else if (index == 3 || index == 4) {} else {
// En cas de diminution, pas de commentaire pour les transports et l'agriculture
tempp2 += '<br /><span style="color:#216be7">' + parseInt((Consommation.valeur2015[index] - this.y) / Consommation.unites[index]) + Consommation.unitext[index] + '</span>';
}
// Pour les autres on indique la limite réaliste
if (this.y < 1.03 * Consommation.Min[index] || this.y > 0.97 * Consommation.Max[index]) {
tempp2 += '<br /><span style="color:red">Vous avez atteint la limite'+ Consommation.commentaire_limite[index] +'</span>';
} else if (this.y < 1.25 * Consommation.Min[index] || this.y > 0.8 * Consommation.Max[index]) {
tempp2 += '<br /><span style="color:orange">Vous être proche de la limite' + Consommation.commentaire_limite[index] + '</span>';
}
return tempp2;
}
}
},
xAxis: {
categories: Consommation.nom,
labels: {
enabled: true,
useHTML: true,
formatter: function() {
// label sur l'axe x avec vignette. Le lien iframe est ajouté par une fonction spécifique (via l'id)
return '<div class="label_wrapper" id="' + this.value + '" title="' + Consommation.details[Consommation.nom.indexOf(this.value)] + '" ><img align="right;" class="icon" src="http://www.electricite-2050.fr/' + Consommation.image[Consommation.nom.indexOf(this.value)] + '" />' + this.value + '</div>';
}
}
},
yAxis: [{
title: {
text: 'Consommation (TWh)'
},
stackLabels: {
enabled: true,
crop: false,
overflow: 'none',
style: {
fontWeight: 'bold',
color: 'gray'
},
formatter: function() {
return this.stack; // afficher 2015 ou 2050 au dessus de la colonne
}
}
}],
// En dessous d'une certaine taille d'écran, faire pivoter la mention 2015/2050
responsive: {
rules: [{
condition: {
maxWidth: 550
},
chartOptions: {
yAxis: [{ //--- Primary yAxis
title: {
text: 'Consommation (TWh)'
},
stackLabels: {
enabled: true,
rotation: -90,
crop: false,
overflow: 'none',
marginBottom: 10,
marginLeft: 3,
x: 3,
y: -20,
style: {
fontWeight: 'bold',
color: 'gray',
},
formatter: function() {
return this.stack;
}
}
}],
}
}]
},
plotOptions: {
series: {
point: {
events: {
drag: function(e) {
if (e.y > Consommation.Max[this.index] || e.y < Consommation.Min[this.index]) {
//bloquer le drag'n'drop au limites réalistes et mettre à jour
if (e.y > Consommation.Max[this.index]){
Consommation.valeur2050[this.index] = Consommation.Max[this.index];
} else {
Consommation.valeur2050[this.index] = Consommation.Min[this.index];
}
Consommation_Pie.series[0].update({
data: PieTrace(Consommation)
});
Consommation_Pie.setTitle({
text: 'Répartition de la consommation en 2050 (Total ' + parseInt(sum(Consommation.valeur2050)) + ' TWh/an)'
}); //mise à jour du titre du camembert consommation.
Update(0);
return false;
}
Consommation.valeur2050[this.index] = e.y,
$('#drag').html() //??? depracated ???
},
drop: function(e) {
// comportement standard lors d'un changement de valeur => mise à jour des graphs
Consommation.valeur2050[this.index] = e.y,
Consommation_Pie.series[0].update({
data: PieTrace(Consommation)
}),
Consommation_Pie.setTitle({
text: 'Répartition de la consommation en 2050 (Total ' + parseInt(sum(Consommation.valeur2050)) + ' TWh/an)'
}),
Update(0),
$('#drop').html()
}
}
},
stickyTracking: false //??? depracated ???
},
column: {
stacking: 'normal' //colonnes sous forme de piles 2015/2050
},
line: {
cursor: 'ns-resize',
'stroke-width': 10,
}
},
credits: {
enabled: false
},
// valeurs du graph
series: [{
name: 'Consommation 2015',
data: Consommation.valeur2015.slice(0, 5),
color: Highcharts.getOptions().colors[0],
type: 'column',
minPointLength: 1,
colorByPoint: true,
stack: '2015',
showInLegend: false,
comment: '',
}, {
name: 'Consommation 2050',
data: Consommation.valeur2050.slice(0, 5),
type: 'column',
minPointLength: 1,
colorByPoint: true,
draggableY: true, //ajustable par l'utilisateur
dragPrecisionY: 1,
stack: '2050',
showInLegend: false,
comment: Consommation.comment, //??? commentaire au survol
}, ]
};
};
/* Générer un camembert (pour la consommation et la production */
function PieTrace(Data) {
tempo = [];
for (i = 0; i < Data.nom.length; i += 1) {
// Montrer les labels pour des valeurs non nulles, montrer en dehors du graph pour les petites valeurs
if (Data.valeur2050[i] / sum(Data.valeur2050) < 0.01) {
tempo[i] = {
"name": Data.nom[i],
"y": Data.valeur2050[i],
"dataLabels": {
enabled: false,
distance: 0
}
};
} else if (Data.valeur2050[i] / sum(Data.valeur2050) < 0.05) {
tempo[i] = {
"name": Data.nom[i],
"y": Data.valeur2050[i],
"dataLabels": {
distance: 8
}
};
} else {
tempo[i] = {
"name": Data.nom[i],
"y": Data.valeur2050[i],
"dataLabels": {
distance: -25
}
};
};
}
return tempo;
}
/* Générer le graph production - la structure est largement similaire à celle du graph consommation */
function Produ_Chart(Production) {
return {
chart: {
renderTo: 'Production_Chart',
animation: false,
backgroundColor: null,
},
title: {
text: 'Production Électrique Française'
},
// Adapter l'étiquette de chaque colonne en fonction des actions de l'utilisateur
tooltip: {
useHTML: true,
formatter: function() {
var index = this.colorIndex;
var Stack = this.series.options.stack;
tempp = '<b>' + this.x + ' en ' + Stack + ': ' + this.y + ' TWh';
if (Stack == 2015) {
return tempp + '</b>';
} else {
tempp += ' ' + comp(this.y, Production.valeur2015[index]) + '</b>';
if (index == 2 || index == 5) {} else {
tempp += '<br /><span style="color:#216be7">' + parseInt(this.y / Production.unites[index]) + Production.unitext[index] + '</span>'; //+this.series.options.comment[index];
}
if (this.y > 0.97 * Production.Max[index]) {
tempp += '<br /><span style="color:red">Vous avez atteint la limite'+ Production.commentaire_limite[index] +'</span>';
} else if (this.y > 0.8 * Production.Max[index]) {
tempp += '<br /><span style="color:orange">Vous être proche de la limite'+ Production.commentaire_limite[index] +'</span>';
}
return tempp;
}
}
},
// label sur l'axe x avec vignette. Le lien iframe est ajouté par une fonction spécifique (via l'id)
xAxis: {
categories: Production.nom,
labels: {
useHTML: true,
enabled: true,
formatter: function() {
return '<div class="label_wrapper" align="center;" style="text-align:center;" title="' + Production.details[Production.nom.indexOf(this.value)] + '" id="' + this.value + '"><img align="right;" class="icon" src="http://www.electricite-2050.fr/' + Production.image[Production.nom.indexOf(this.value)] + '" />' + this.value + '</div>';
}
}
},
yAxis: [{
title: {
text: 'Production (TWh)'
},
stackLabels: {
enabled: true,
style: {
fontWeight: 'bold',
color: 'gray'
},
formatter: function() {
return this.stack; // afficher 2015/2050 au dessus des colonnes
}
},
}],
// En dessous d'une certaine taille d'écran, faire pivoter la mention 2015/2050
responsive: {
rules: [{
condition: {
maxWidth: 500
},
chartOptions: {
yAxis: [{ //--- Primary yAxis
title: {
text: 'Consommation (TWh)'
},
stackLabels: {
enabled: true,
rotation: -90,
crop: false,
overflow: 'none',
x: 3,
y: -20,
style: {
fontWeight: 'bold',
color: 'gray',
},
formatter: function() {
return this.stack;
}
}
}],
}
}]
},
plotOptions: {
series: {
point: {
events: {
drag: function(e2) {
//bloquer le drag'n'drop au limites réalistes et mettre à jour
if (e2.y > Production.Max[this.index]) {
Production.valeur2050[this.index] = Production.Max[this.index];
Production_Chart.series[1].data[this.index].update(y = Production.Max[this.index]),
Production_Pie.series[0].update({
data: PieTrace(Production)
}),
Update(0);
return false;
}
if (e2.y < 0) {
Production.valeur2050[this.index] = Production.Min[this.index];
Production_Chart.series[1].data[this.index].update(y = Production.Min[this.index]),
Production_Pie.series[0].update({
data: PieTrace(Production)
}),
Update(0);
return false;
}
$('#drag').html()
},
drop: function(e2) {
// Comportement normal en cas de changement de la valeur
Production.valeur2050[this.index] = e2.y,
Production_Pie.series[0].update({
data: PieTrace(Production)
}),
Update(0),
$('#drop').html()
}
}
},
stickyTracking: false
},
column: {
stacking: 'normal',
StackLabels: {
enabled: true,
useHTML: true,
verticalAlign: 'bottom' // ???
}
},
line: {
cursor: 'move'
}
},
credits: {
enabled: false
},
//Mise en place des séries de valeurs
series: [{
name: 'Production 2015',
data: Production.valeur2015.slice(0, 6),
color: Highcharts.getOptions().colors[0],
type: 'column',
minPointLength: 1,
colorByPoint: true,
stack: '2015',
colors: Production.colors,
showInLegend: false,
}, {
name: 'Production 2050',
data: Production.valeur2050.slice(0, 6),
type: 'column',
minPointLength: 1,
colorByPoint: true,
draggableY: true,
dragPrecisionY: 1,
stack: '2050',
colors: Production.colors,
showInLegend: false,
}, ],
};
}
/* La fonction Bilan calcule toutes les grandeurs sous-jacentes aux résultats */
function Bilan(Consommation, Production) {
totalProd = [sum(Production.valeur2015), sum(Production.valeur2050)], // Prodution toatle (hors destockage)
Flexi = [Production.valeur2015[0] + Production.valeur2015[2] * 0.28, Production.valeur2050[0] + Production.valeur2050[2] * 0.28], //Production flexible (fossiles+hydraulique de lacs)
Fatale = [Production.valeur2015[3] + Production.valeur2015[4] + Production.valeur2015[2] * 0.72, Production.valeur2050[3] + Production.valeur2050[4] + Production.valeur2050[2] * 0.72], //éolien, solaire, hydraulique au fil de l'eau
Cste = [totalProd[0] - Flexi[0] - Fatale[0], totalProd[1] - Flexi[1] - Fatale[1]], //vérification que rien n'a été oublié
ConsoFlex = [0, (Consommation.valeur2050[3] - 8) * 0.3], // Consommation flexible : une partie des transports électrifiés
// Calcul du stockage à partir des valeurs de production et du coefficient "StorageFactor". Le solaire et l'éolien sont ajoutés quadratiquement, la production et la consommation flexible ssont retranchées, ainsi que le stockage hydraulique déjà existant (5.8 TWh).
Temping = multiply(Production.valeur2050, Production.StorageFactor2),
stock = [0, Math.max(sum(Temping.slice(0, 3)) + sum3(Temping.slice(3, 5)) + Temping[5] - Flexi[1] * 0.7 - 5.8 - ConsoFlex[1], 0)],
Pompage = [5.8/0.85, 5.8/0.85], //pompage pour les STEP (efficacité 85%)
NewStock = [0, stock[1] * (1/stockage.rendement)], //Besoins de stockage en prenant en compte le rendement
Destockage = [0, stock[1]], //Électricité fournie en destcokant
Pertes = [(totalProd[0] + 5.8) * Pertes_reseau, (totalProd[1] + stock[1] + 5.8) * Pertes_reseau], // Pertes sur le réseau (production totale + destockage fois pertes)
totalConso = [sum(Consommation.valeur2015), sum(Consommation.valeur2050)], // Consommation totale
Export = [totalProd[0] - Pertes[0] - Pompage[0] - NewStock[0] + Destockage[0] + 5.8 - totalConso[0], totalProd[1] - Pertes[1] - Pompage[1] - NewStock[1] + Destockage[1] + 5.8 - totalConso[1]], //Les excédents (resp. manques) sont exportés (resp. importés)
Besoins = [0, totalConso[1] + Pertes[1] + Pompage[1] + NewStock[1] - Destockage[1] - 5.8], //Besoins simplifiés à afficher dans la jauge = Consommation + énergie à stocker - énergie à déstocker
// calcul d'un indicateur de réalisme
Reali = 0;
// réalisme des économies d'énergie
for (var i = 0; i < Consommation.valeur2050.length; i++) {
if (Consommation.valeur2050[i] > 0.95 * Consommation.Max[i]) {
Reali = Reali + 3;
} else if (Consommation.valeur2050[i] > 0.9 * Consommation.Max[i]) {
Reali = Reali + 2;
} else if (Consommation.valeur2050[i] > 0.8 * Consommation.Max[i]) {
Reali = Reali + 1;
}
}
//Réalisme des productions
for (var i = 0; i < Production.valeur2050.length; i++) {
if (Production.valeur2050[i] > 0.95 * Production.Max[i]) {
Reali = Reali + 3;
} else if (Production.valeur2050[i] > 0.9 * Production.Max[i]) {
Reali = Reali + 2;
} else if (Production.valeur2050[i] > 0.8 * Production.Max[i]) {
Reali = Reali + 1;
}
}
// Malus en cas d'imports/exports excessifs
if (Export[1] < 0) {
Reali = Reali - Export[1] / 3;
} else if (Export[1] > 60) {
Reali = Reali + (Export[1] - 60) / 6;
}
//On range les valeurs dans un tableau, avec un arrondi au dizième
temp2 = {
nom: ['Total Production', 'Pertes', 'Consommation', 'Exportations'], //??? deprcated ???
valeur2015: [
totalProd[0],
parseInt(Pertes[0]),
totalConso[0],
parseInt(Export[0] * 10) / 10,
parseInt(Pompage[0] * 10) / 10,
parseInt(Destockage[0] * 10) / 10,
parseInt(Flexi[0] * 10) / 10,
parseInt(Fatale[0] * 10) / 10,
parseInt(Cste[0] * 10) / 10,
parseInt(Besoins[0]),
parseInt(ConsoFlex[0]),
parseInt(stock[0]),
],
valeur2050: [
totalProd[1],
parseInt(Pertes[1]),
totalConso[1],
parseInt(Export[1] * 10) / 10,
parseInt(Pompage[1] * 10) / 10,
parseInt(Destockage[1] * 10) / 10,
parseInt(Flexi[1] * 10) / 10,
parseInt(Fatale[1] * 10) / 10,
parseInt(Cste[1] * 10) / 10,
parseInt(NewStock[1] * 10) / 10,
parseInt(Besoins[1]),
parseInt(ConsoFlex[1] * 10) / 10,
parseInt(stock[1]),
],
CO2: parseInt((sum(multiply(Production.valeur2050, Production.CO2)) + stock[1] * stockage.CO2)/1000), //Cacul des rejets de CO2
Emplois: parseInt((sum(multiply(Production.valeur2050, Production.Emplois)) + stock[1] * stockage.Emplois)/1000)*1000, // Nombre d'emploi nécessaires
coût: parseInt((sum(multiply(Production.valeur2050, Production.coût)) + stock[1] * stockage.CO2)/totalProd[1])/1000, //Coût du kW
Investissement: parseInt((sum(multiply(Production.valeur2050, Production.Investissement)) + stock[1] * stockage.Investissement + (totalConso[0] - totalConso[1] + Consommation.valeur2050[3]) * 250 + Consommation.valeur2050[3]*500)/30/1000), // Investissements nécessaires sur 30 ans en prenant en compte les économies d'énergie
};
return BilanV = temp2;
}
/* Tracer le Bilan Production vs. Consommation */
function PlotBilan(Bilan) {
return [{
name: 'Destockage Autres',
data: [0],
showInLegend: false,
type: 'bar',
stack: 'Production',
color: "#97d881",
}, {
name: 'Destockage Hydro',
data: [5.8],
showInLegend: false,
type: 'bar',
stack: 'Production',
color: Highcharts.getOptions().colors[0],
}, {
name: 'Production flexible',
data: [BilanV.valeur2015.slice(6, 7)],
showInLegend: false,
type: 'bar',
stack: 'Production',
color: "#6B8ECB",
}, {
name: 'Production fatale',
data: [BilanV.valeur2015.slice(7, 8)],
showInLegend: false,
type: 'bar',
stack: 'Production',
color: "#046380",
}, {
name: 'Production peu variable',
data: [BilanV.valeur2015.slice(8, 9)],
showInLegend: false,
type: 'bar',
stack: 'Production',
color: "#4065A4",
}, {
name: 'Exportations',
data: BilanV.valeur2015.slice(3, 4),
showInLegend: false,
type: 'bar',
stack: 'Consommation',
color: 'red',
}, {
name: 'Pertes réseau',
data: BilanV.valeur2015.slice(1, 2),
showInLegend: false,
type: 'bar',
stack: 'Consommation',
color: Highcharts.getOptions().colors[1],
}, {
name: 'Stockage Supplémentaire',
data: [0],
showInLegend: false,
type: 'bar',
stack: 'Consommation',
color: '#97d881',
}, {
name: 'Pompage Hydo',
data: BilanV.valeur2015.slice(4, 5),
showInLegend: false,
type: 'bar',
stack: 'Consommation',
color: Highcharts.getOptions().colors[0],
}, {
name: 'Consommation Flexible',
data: BilanV.valeur2015.slice(11, 12),
showInLegend: false,
type: 'bar',
stack: 'Consommation',
color: "#be9f72",
}, {
name: 'Consommation',
data: BilanV.valeur2015.slice(2, 3),
showInLegend: false,
type: 'bar',
stack: 'Consommation',
color: "#BD8D46",
}, {
name: 'Destockage Autres',
data: [0, BilanV.valeur2050.slice(5, 6)],
showInLegend: false,
type: 'bar',
stack: 'Production',
color: "#97d881",
}, {
name: 'Destockage Hydro',
data: [0, 5.8],
showInLegend: false,
type: 'bar',
stack: 'Production',
color: Highcharts.getOptions().colors[0],
}, {
name: 'Production flexible',
data: [0, BilanV.valeur2050.slice(6, 7)],
showInLegend: false,
type: 'bar',
stack: 'Production',
color: "#6B8ECB",
}, {
name: 'Production fatale',
data: [0, BilanV.valeur2050.slice(7, 8)],
showInLegend: false,
type: 'bar',
stack: 'Production',
color: "#046380",
}, {
name: 'Production peu variable',
data: [0, BilanV.valeur2050.slice(8, 9)],
showInLegend: false,
type: 'bar',
stack: 'Production',
color: "#4065A4",
}, {
name: 'Exportations',
data: [0, BilanV.valeur2050.slice(3, 4)],
showInLegend: false,
type: 'bar',
stack: 'Consommation',
color: 'red',
}, {
name: 'Pertes réseau',
data: [0, BilanV.valeur2050.slice(1, 2)],
showInLegend: false,
type: 'bar',
stack: 'Consommation',
color: Highcharts.getOptions().colors[1],
}, {
name: 'Stockage Supplémentaire',
data: [0, BilanV.valeur2050.slice(9, 10)],
showInLegend: false,
type: 'bar',
stack: 'Consommation',
color: '#97d881',
}, {
name: 'Pompage Hydro',
data: [0, BilanV.valeur2050.slice(4, 5)],
showInLegend: false,
type: 'bar',
stack: 'Consommation',
color: Highcharts.getOptions().colors[0],
}, {
name: 'Consommation Flexible',
data: [0, BilanV.valeur2050.slice(11, 12)],
showInLegend: false,
type: 'bar',
stack: 'Consommation',
color: "#be9f72",
}, {
name: 'Consommation',
data: [0, parseInt((BilanV.valeur2050.slice(2, 3) - BilanV.valeur2050.slice(11, 12)) * 10) / 10],
showInLegend: false,
type: 'bar',
stack: 'Consommation',
color: "#BD8D46",
}];
}
/* Titre de la jauge production vs consommation */
function jauge_title() {
A = BilanV.valeur2050[0]; // production totale
B = BilanV.valeur2050[10]; // Besoins
if (A > 1.15 * B) {
return {
title: {
text: 'Surproduction !',
style: {
color: 'orange',
"fontWeight": "bold",
"fontSize": "13px",
}
}
};
} else if (A > B && A < 1.15 * B) {
return {
title: {
text: 'Production suffisante',
style: {
color: 'green',
"fontWeight": "bold",
"fontSize": "13px",
}
}
};
} else if (A > 0.95 * B && A < B) {
return {
title: {
text: 'Production faible !',
style: {
color: 'orange',
"fontWeight": "bold",
"fontSize": "13px",
}
}
};
} else if (A < 0.95 * B) {
return {
title: {
text: 'Production insuffisante !',
style: {
color: 'red',
"fontWeight": "bold",
"fontSize": "13px",
}
}
};
}
}
/* Mise en place de la jauge production vs consommation */
function Produ_jauge() {
return {
chart: {
type: 'solidgauge',
renderTo: 'Production_jauge',
backgroundColor: null,
},
title: null,
// Positionnement dans son div
pane: {
center: ['50%', '43%'],
size: '70%',
startAngle: -90,
endAngle: 90,
background: {
backgroundColor: null,
innerRadius: '60%',
outerRadius: '100%',
shape: 'solid'
}
},
tooltip: {
enabled: false
},
// valeurs limites
yAxis: {
stops: [
[0.9, '#DF5353'], //rouge
[0.95, '#ee9e05'], //orange
[1, '#55BF3B'], // vert
[1.15, '#55BF3B'], // vert
[1.2, '#ee9e05'], // orange
],
lineWidth: 0,
minorTickInterval: null,
tickAmount: 0,
labels: {
enabled: false
},
tickInterval: (parseInt(BilanV.valeur2050[10])/1000), // Très important, le max doit être un multiple du nombre d'intervalles
min: 0,
max: parseInt(BilanV.valeur2050[10]),
// valeurs de départ
title: {
text: 'Production insuffisante !',
y: -30,
style: {
color: 'red',
"fontWeight": "bold",
"fontSize": "13px",
}
}
},
plotOptions: {
solidgauge: {
dataLabels: {
borderWidth: 0,
useHTML: true
}
}
},
credits: {
enabled: false
},
// valeur et commentaires de départ
series: [{
type: 'solidgauge',
name: 'Production',
data: [parseInt(BilanV.valeur2050[0])],
dataLabels: {
useHTML: true,
format: '<div class="jauge_text">' +
'<span class="jauge_text_2">Production : {y} TWh <br />Conso + Pertes : ' + parseInt(BilanV.valeur2050[10]) + ' TWh</span><span class="jauge_text_1"><br />' + expimp() + ' : ' + Math.abs(parseInt(BilanV.valeur2050[3])) + ' TWh</span></div>'
},
tooltip: {
valueSuffix: ' TWh'
}
}]
};
}
/* Mise en place de la fonction stockage */
function Stock_Col(Production) {
return {
chart: {
renderTo: 'Stock_Chart',
animation: true,
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false,
},
title: {
text: 'Stockage en 2050'
},
//text de la bulle au survol
tooltip: {
formatter: function() {
tempp = '<b> ' + this.series.name + ' : ' + this.y + ' TWh';
return tempp;
}
},
//légende sur l'axe x (même format que pour la conso et la production)
xAxis: {
categories: Production.nom,
labels: {
enabled: true,
formatter: function() {
return '<div class="label_wrapper" align="center;" style="text-align:center;" title="' + stockage.details + '" id="stocklab"><img align="right;" class="icon" src="http://www.electricite-2050.fr/' + stockage.image + '" /><br />' + stockage.nom + '</div>';
}
}
},
yAxis: [{
labels: {
enabled: false
},
title: {
text: null
},
gridLineWidth: 0,
min: 0,
max: 200, //on fixe les bornes
}],
plotOptions: {
column: {
stacking: 'normal',
StackLabels: {
enabled: true,
useHTML: true,
verticalAlign: 'bottom'
}
},
line: {
cursor: 'move'
}
},
credits: {
enabled: false
},
// Mise en place des valeurs et couleurs
series: [{
name: 'Nouvelles formes de stockage',
data: [BilanV.valeur2050[12]],
color: '#97d881',
type: 'column',
showInLegend: false,
}, {
name: 'Stockage Hydro-électrique',
data: [stockage.STEP],
color: Highcharts.getOptions().colors[0],
type: 'column',
showInLegend: false,
}],
};
}
/* Tuiles à afficher dans les résultats */
function tile2(color, img, texte1, texte2, description, texte3, id) {
return '<div class="box" style="background: none repeat scroll 0 0 ' + color + '" title="' + description + '" id="' + id + '"><img alt="" src=http://www.electricite-2050.fr/' + img + '><br /><h1>' + texte1 + '</h1><p>' + texte2 + ' </p><p>' + texte3 + '</p></div>';
}
/* Comparer deux valeurs et renvoyer la hausse/baisse en % ou en x */
function comp(A, B) {
if (A > B) {
if (A > 2 * B) {
temp = "x " + parseInt(A / B * 10) / 10;
} else {
temp = "+ " + parseInt(100 * (A / B - 1)) + " %";