-
Notifications
You must be signed in to change notification settings - Fork 0
/
ice_calculator.html
673 lines (604 loc) · 20.1 KB
/
ice_calculator.html
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
<!--
Copyright (c) 2021, Minh Tran, Tampere University
This web-based program was developed as a part of the project: Experiment with data mashups and report/demonstrate
This source code is licensed under the 3-clause BSD license. See LICENSE file in the repository root directory.
Author(s): Minh Tran <minh.s.tran@tuni.fi>
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ICE calculator</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700;800&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x"
crossorigin="anonymous"
/>
</head>
<body>
<style>
.style_main_dialog {
font-family: "Open Sans", sans-serif;
background-color: #2f2859;
height: 675px;
}
.style_car_information_dialog {
background-color: #e1e5f4;
color: #2f2859;
height: 285px;
background-color: (194, 176, 146);
}
.style_trip_information_dialog {
background-color: #e1e5f4;
color: #2f2859;
height: 180px;
background-color: (194, 176, 146);
}
.style_result_dialog {
background-color: #e1e5f4;
color: #2f2859;
}
.style_quote_section {
height: 294px;
background-color: white;
}
.explanation {
font-family: "Open Sans", sans-serif;
font-size: 16px;
}
.style_extra_funtion {
height: 450px;
}
.style_top_results {
background-color: #e1e5f4;
color: #2f2859;
}
.style_compare {
background-color: #2f2859;
color: white;
}
.custom_row {
height: 675px;
}
.style_nav_bar {
height: 80px;
}
.style_sub_link {
color: #4e008e;
font-size: 16px;
font-weight: 200;
text-decoration: none;
font-family: "Open Sans", sans-serif;
}
.style_sub_link:hover {
color: #e1e5f4;
}
.style_comparison_hover:hover {
text-decoration: underline;
}
.style_additional_row {
height: 20px;
}
.results {
font-weight: 700;
font-size: 18px;
color: white;
}
.style_weather_information_dialog {
height: 170px;
background-color: #e1e5f4;
color: #2f2859;
}
.custom_row_2 {
height: 30px;
}
.weather_detail_explanation {
font-family: "Open Sans", sans-serif;
text-decoration: none;
}
.weather_values:hover {
cursor: pointer;
text-decoration: underline;
}
.style_dark_buttons {
background-color: #2f2859;
color: white;
}
.style_dark_buttons:hover {
background-color: #4e008e;
}
.modal-title {
color: #4e008e;
}
.style_traffic_flow_dialog {
height: 150px;
background-color: #e1e5f4;
color: #2f2859;
}
.dropdown-item {
color: #4e008e;
}
#tampere_university_logo {
height: 65px;
}
#tampere_university_logo:hover {
cursor: pointer;
}
#quote_details {
font-family: "Open Sans", sans-serif;
color: #4e008e;
font-size: 16px;
}
#logo {
font-family: "Open Sans", sans-serif;
font-size: 30px;
font-weight: 700;
color: #4e008e;
}
#total_emission_result {
font-weight: bold;
}
#carComparisonModalLabel {
color: #4e008e;
}
#reference {
font-family: "Open Sans", sans-serif;
text-decoration: none;
font-size: 12px;
}
h1 {
font-family: "Open Sans", sans-serif;
font-weight: 700;
font-size: 60px;
color: #4e008e;
text-align: center;
}
h4 {
font-family: "Open Sans", sans-serif;
font-size: 30px;
font-weight: 700;
text-align: center;
}
h5 {
font-family: "Open Sans", sans-serif;
font-size: 25px;
font-weight: 700;
text-align: center;
}
h6 {
font-family: "Open Sans", sans-serif;
font-size: 18px;
font-weight: 700;
text-align: center;
}
input {
color: #2f2859;
}
</style>
<nav class="navbar navbar-light style_nav_bar">
<div class="container justify-content-space-between align-items-center">
<a class="navbar-brand" id="logo" href="index.html">CO2 CALCULATOR</a>
<a class="style_sub_link" href="ice_calculator.html">ICE Vehicles</a>
<a class="style_sub_link" href="ev_calculator.html"
>Electric Vehicles</a
>
<a
class="nav-link dropdown-toggle style_sub_link"
href="#"
id="navbarComparisonLink"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Comparison
</a>
<a href="documentation.html" class="style_sub_link">Documentation</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="ev_vs_ev.html">EV - EV</a></li>
<li>
<a class="dropdown-item" href="icev_vs_icev.html">ICEV - ICEV</a>
</li>
<li><a class="dropdown-item" href="icev_vs_ev.html">EV - ICEV</a></li>
</ul>
<img
src="buttons/logo_TAU_fi-eng_violetti_RGB.png"
alt="Tampere University logo"
id="tampere_university_logo"
onclick="parent.open('https://www.tuni.fi/en/')"
/>
</div>
</nav>
<div class="container-fluid style_main_dialog">
<div class="row justify-content-center">
<div class="col-md-4">
<div
class="
row
style_car_information_dialog
align-items-center
justify-content-center
"
>
<div class="row">
<div class="col-md-4 col-xl-3">
<label for="inputMake" class="col-form-label">Make</label>
</div>
<div class="col-md-8 col-xl-9">
<input
type="text"
list="carMakerOptions"
id="inputMake"
class="form-control"
/>
<datalist id="carMakerOptions"></datalist>
</div>
</div>
<div class="row">
<div class="col-md-4 col-xl-3">
<label for="inputModel" class="col-form-label">Model</label>
</div>
<div class="col-md-8 col-xl-9">
<input
type="text"
list="carModelOptions"
id="inputModel"
class="form-control"
disabled
/>
<datalist id="carModelOptions"></datalist>
</div>
</div>
<div class="row">
<div class="col-md-4 col-xl-3">
<label for="inputVersion" class="col-form-label">Version</label>
</div>
<div class="col-md-8 col-xl-9">
<input
type="text"
list="carVersionOptions"
id="inputVersion"
class="form-control"
disabled
/>
<datalist id="carVersionOptions"></datalist>
</div>
</div>
<div class="row">
<div class="col-md-4 col-xl-3">
<label for="inputYear" class="col-form-label">Year</label>
</div>
<div class="col-md-8 col-xl-9">
<input
type="text"
list="carYearOptions"
id="inputYear"
class="form-control"
disabled
/>
<datalist id="carYearOptions"></datalist>
</div>
</div>
<div class="row">
<div class="col text-center">
Traffic data provided by Traficom
</div>
</div>
</div>
<div class="row style_additional_row"></div>
<div
class="
row
style_trip_information_dialog
justify-content-center
align-items-center
"
>
<div class="row mt-2">
<div class="col-md-4 col-xl-3">
<label for="inputOrigin" class="col-form-label">Origin</label>
</div>
<div class="col-md-8 col-xl-9">
<input type="text" id="inputOrigin" class="form-control" />
</div>
</div>
<div class="row">
<div class="col-md-4 col-xl-3">
<label for="inputDestination" class="col-form-label"
>Destination</label
>
</div>
<div class="col-md-8 col-xl-9">
<input
type="text"
id="inputDestination"
class="form-control"
disabled
/>
</div>
</div>
<div class="row">
<div class="col text-center">
Trip data provided by Google Maps
</div>
</div>
</div>
<div class="row style_additional_row"></div>
<div
class="
row
style_weather_information_dialog
justify-content-center
align-items-center
"
>
<div class="row text-center">
<p>Choose how you want to enter the temperature</p>
</div>
<div class="row justify-content-center align-items-center">
<div class="col-md-6 col-xxl-4">
<button
type="button"
class="btn w-100 style_dark_buttons"
id="manualWeatherButton"
data-bs-toggle="modal"
data-bs-target="#inputTemperature"
disabled
>
Manually
</button>
</div>
<div class="col-md-6 col-xxl-4">
<button
type="button"
class="btn w-100 style_dark_buttons"
id="realtimeWeatherButton"
disabled
>
Real-time
</button>
</div>
</div>
<div class="row">
<div class="col text-center">
<p id="temperatureResultText"></p>
</div>
</div>
<div class="row">
<div class="col text-center">
Weather data provided by AccuWeather
</div>
</div>
</div>
<!-- <div class="row style_additional_row"></div>
<div class="row justify-content-center align-items-center style_traffic_flow_dialog">
<div class="row text-center">
<p>Choose how you want to enter the traffic flow speed</p>
</div>
<div class="row justify-content-center align-items-center">
<div class="col-md-6 col-xxl-4">
<button type="button" class="btn w-100 style_dark_buttons" id="manualFlowButton" data-bs-toggle="modal" data-bs-target="#inputTemperature" disabled>Manually</button>
</div>
<div class="col-md-6 col-xxl-4">
<button type="button" class="btn w-100 style_dark_buttons" id="realtimeFlowButton" disabled>Real-time</button>
</div>
</div>
<div class="row">
<div class="col text-center">Traffic flow data provided by TomTom</div>
</div>
</div> -->
</div>
<div class="col-md-2">
<div class="row custom_row justify-content-center align-items-center">
<div class="row">
<div class="row justify-content-center align-items-center">
<div class="col-md-9">
<div class="row">
<img id="arrow_1" src="arrows/Arrow 1.svg" alt="Arrow 1" />
</div>
</div>
<div class="col-md-3">
<p
id="average_emission_result"
class="results text-center"
></p>
</div>
</div>
<div class="row custom_row_2"></div>
<div class="row justify-content-center align-items-center">
<div class="col-md-9">
<div class="row">
<img id="arrow_2" src="arrows/Arrow 2.svg" alt="Arrow 2" />
</div>
</div>
<div class="col-md-3">
<p id="trip_distance_result" class="results text-center"></p>
<p id="trip_duration_result" class="results text-center"></p>
</div>
</div>
<div class="row custom_row_2"></div>
<div class="row justify-content-center align-items-center">
<div class="col-md-9">
<div class="row">
<img id="arrow_3" src="arrows/Arrow 3.svg" alt="Arrow 3" />
</div>
</div>
<div class="col-md-3">
<p id="temperature_result" class="results text-center"></p>
</div>
</div>
</div>
<div class="row justify-content-center align-items-center">
<button
type="button"
class="btn w-75 btn-light btn-sm"
id="ok_button"
>
OK
</button>
</div>
</div>
</div>
<div class="col-md-4 style_result_dialog">
<div class="row custom_row align-items-center">
<div class="col">
<h4>RESULT</h4>
<p class="formula_explanation text-center">
Combining the datas using the formula:<br />
total emission = average emission * distance<br />
</p>
<div
class="formula_explanation text-center weather_values"
id="weatherEffects"
data-bs-toggle="modal"
data-bs-target="#detailWeatherEffect"
></div>
<p class="text-center" id="total_emission_result">
The total emission of the trip: ... grams of CO2
</p>
</div>
</div>
</div>
</div>
</div>
<div
class="modal fade"
id="detailWeatherEffect"
tabindex="-1"
aria-labelledby="detailWeatherEffectTitle"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="detailWeatherEffectTitle">
Weather Effects
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<div class="container weather_detail_explanation">
<p>
Considering the manufacturers' tests were conducted at 20
degrees Celsius, different temperatures affect the real-world
values differently [1]:
</p>
<ul>
<li>-7 degrees Celsius: 16% increase</li>
<li>0 degree Celsius: 11% increase</li>
<li>10 degrees Celsius: 5% increase</li>
<li>30 degrees Celsius: 2% decrease</li>
</ul>
<p>
The car users might want to use the AC if the weather outside is
unfavourable. While most cars uses heat from the engine to heat
the car in cold weather, cooling down the car in hot weather
requires fuel. Fuel consumption for AC usage will be considered
if the weather outside is greater than 20 degrees Celsius. The
consumption per hour increases linearly from 20 degrees to 30
degrees (+0.04 litres per hour for each degree rised, e.g. 0.12
litres per hour in 23 degrees and 0.2 litres per hour in 25
degrees, etc.), and stays at 0.4 litres per hour if the
temperature exceeds 30 degrees.
</p>
<p>
The program obtains the real-world temperature and decides the
closest data points to the result. The according effects will be
used in calculating the final CO2 consumption.
</p>
<p id="reference">
[1] Fontaras, G., Zacharof, N.-G., & Ciuffo, B. (2017,
February 21). Fuel consumption and CO2 emissions from passenger
cars in Europe – Laboratory versus real-world emissions.
Progress in Energy and Combustion Science.
https://www.sciencedirect.com/science/article/pii/S0360128516300442.
</p>
</div>
</div>
<div class="modal-footer">
<button
type="button"
class="btn style_dark_buttons"
data-bs-dismiss="modal"
>
Close
</button>
</div>
</div>
</div>
</div>
<div
class="modal fade"
id="inputTemperature"
tabindex="-1"
aria-labelledby="inputTemperatureLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="inputTemperatureLabel">
Enter Temperature
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<div class="container">
<div class="row align-items-center justify-content-center">
<div class="col-auto">
<label for="inputTemperatureForm" class="col-form-label"
>Temperature</label
>
</div>
<div class="col-auto">
<input
type="text"
id="inputTemperatureForm"
class="form-control"
/>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button
type="button"
class="btn style_dark_buttons"
id="manualTemperatureOkButton"
data-bs-dismiss="modal"
>
OK
</button>
</div>
</div>
</div>
</div>
<script
async
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDAQhxgaCaHdn0TIEGfZYn-a0mZolCZqW0&libraries=places&callback=initMap"
></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"
></script>
<script src="js/ice_calculator.js"></script>
</body>
</html>