help.html.jinja2
6.37 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
{% extends 'layout.html.jinja2' %}
{% set menu_section = 'about' %}
{% block title %}About{% endblock %}
{#############################################################################}
{% block content %}
<div class="mdl-layout mdl-js-layout">
<main id="" class="mdl-layout__content">
<div class="mdl-grid">
<a href="/index.html" class="mdl-button mdl-button--raised mdl-button--primary">
↵ Back
</a>
</div>
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--12-col mdl-cell--12-col-tablet mdl-cell--12-col-phone">
<h6>
The CDPP Heliopropa product gives access to an heliospheric propagator for
solar wind prediction at various targets in the Solar System based on a
1D magnetohydrodynamic propagation model originally developed by <a href="http://dx.doi.org/10.1029/2004JA010959" target="_blank">Tao et al.</a>, 2005.
</h6>
<p>
The product gives access to various solar wind parameters (dynamic pressure,
velocity, tangential magnetic field, temperature and solar wind density) based
on propagation of in-situ measurements from other solar sytem locations (currently
Sun-Earth L1). The angles between the targets, Sun and Earth are also provided
and are a useful indicator of accuracy which may be degraded away from the Sun-Earth line.
For target-Sun-Earth angles away from the Sun-Earth line please be aware that non
co-rotating features such as CMEs, either at the source or target, will mean that the resultant
model output is not representative of the target environment.
Currently the solar system target locations supported by the tool are all of the
solar system planets. A shorter time interval can be selected by dragging the mouse
in one of the time series plots. To return to the default period double click in a
time series panel.
</p>
<p>
The model runs daily (midnight) at CDPP by taking the most recent L1 data (ACE Real Time data set).
Propagated parameters at all planets are then updated accordingly and made available in the interface
(blue line for past data, purple line for prediction, the extent of which depends on planet locations).
</p>
</div>
<div class="mdl-cell mdl-cell--6-col mdl-cell--6-col-tablet mdl-cell--12-col-phone">
<h4>Layout</h4>
<p>
The default layout is shown in the figure below and displays the dynamic pressure parameter
for the planets from Mercury out to Saturn.</p>
<center><img width=90% border=1 src="static/img/hp_default.png" /></center>
</div>
<div class="mdl-cell mdl-cell--6-col mdl-cell--6-col-tablet mdl-cell--12-col-phone">
<h4>Instructions</h4>
<p>Moving the cursor over the time series plots on the right side of the display
will show the time and value of the parameters in pop-up bubbles and the locations
of the planets in the solar system display in the top left will be updated to show
their positions at the corresponding times.This heliospheric view is displayed in
HEE coordinates for which the X axis is towards the Earth and the Z axis is towards
the ecliptic North pole. This system is therefore fixed with respect to the Earth-Sun line. </p>
<p>The <img height=18 src="static/img/zoom_in.png" /> and <img height=18 src="static/img/zoom_out.png" /> buttons below the solar system plot will show either
just an inner solar system view (up to Mars) or the entire solar system (to the
furtherst planet selected)
respectively.</p>
<p>The <img height=18 src="static/img/download.png" /> button will return a CDF file containing the data (the parameters)
pertaining to the displayed planet(s) with 1h time resolution.</p>
</div>
<div class="mdl-cell mdl-cell--12-col mdl-cell--12-col-tablet mdl-cell--12-col-phone">
<p>In the top left of the display is a menu icon. Selecting this will slide open the options menu.
From here:
<ul>
<li>The default time interval can be changed (data will need to be recalculated which may
take some time, please be patient)</li>
<li>The target planets to be displayed can be selected. Click on the corresponding planet
item to toggle on/off.</li>
<li>The parameters to be displayed for each target can be displayed. Click on the corresponding
parameter to toggle on/off its inclusion in the time series panels.</li>
</ul>
Click in the main display to close the options menu.
</p>
<h4>Credits</h4>
<p>
The Heliopropa product has been developed by CDPP with support from the Europlanet 2020
Research Infrastructure project through its <a href="http://planetaryspaceweather-europlanet.irap.omp.eu" target="_blank">Planetary Space Weather Services</a> activities
funded from the European Union's Horizon 2020 research and innovation programme under
grant agreement Number 654208.
</p>
{# <center>#}
{# <img style="width: 42px; height: 42px;" alt="cnrs" src="static/img/logo/logo_cnrs.png">#}
{# <img style="width: 42px; height: 40px;" alt="cnes" src="static/img/logo/logo_cnes.png">#}
{# <img style="width: 156px; height: 53px;" alt="ups" src="static/img/logo/logo_ups.png">#}
{# <img style="width: 160px; height: 38px;" alt="europlanet" src="static/img/logo/logo_europlanet.png">#}
{# </center>#}
</div>
{# <div class="mdl-cell mdl-cell--4-col mdl-cell--4-col-tablet mdl-cell--4-col-phone">#}
{# <h2><i class="fas fa-balance-scale"></i> Fair Use</h2>#}
{# <p>#}
{# You may use this service as any public domain service.<br />#}
{# We provide no warranty of any kind.<br />#}
{# The source code is available for you to inspect and fork.<br />#}
{# If you use this service, please cite it and let us know.#}
{# </p>#}
{# </div>#}
</div>
</main>
</div>
{% endblock %}
{#### CSS ####################################################################}
{% block styles %}
{{ super() }}
{% endblock %}
{#### JAVASCRIPT #############################################################}
{% block scripts_footer %}
{{ super() }}
{% endblock %}