Commit 4719a17176dfca598478cd38b4d3a4e41353bf76

Authored by Elena.Budnik
0 parents
Exists in master

DOC

Showing 3 changed files with 198 additions and 0 deletions   Show diff stats
DOC/ECLAT_D330.2.pdf 0 → 100644
No preview for this file type
DOC/doc.html 0 → 100644
  1 +++ a/DOC/doc.html
... ... @@ -0,0 +1,80 @@
  1 +<!DOCTYPE html>
  2 +<html>
  3 +<head>
  4 + <meta charset="utf-8">
  5 + <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6 + <meta name="viewport" content="width=device-width, initial-scale=1">
  7 + <title>Footprints documentation</title>
  8 + <link rel="stylesheet" href="style.css">
  9 +</head>
  10 +<body>
  11 +
  12 + <div class="container">
  13 +
  14 + <h1>Documentation du projet <em>Footprints</em></h1>
  15 +
  16 + <h2>Configuration générale</h2>
  17 +
  18 + <p>Nous utiliserons la configuration suivante pour générer les <em>footprints</em> :
  19 + <ul>
  20 + <li>Modèle : Tsyganenko 96 (T96)</li>
  21 + <li>Pas de temps : 5 min</li>
  22 + <li>H = 120 km</li>
  23 + </ul>
  24 + </p>
  25 +
  26 + <h2>Contenu du fichier</h2>
  27 +
  28 + <h3>Les paramètres (dans l'ordre d'apparition)</h3>
  29 +
  30 + <p>
  31 + <ul>
  32 + <li>La date :
  33 + <ul>
  34 + <li>iyear</li>
  35 + <li>iday</li>
  36 + <li>ihour</li>
  37 + <li>min</li>
  38 + </ul>
  39 + </li>
  40 + <li>Coordonnées géographiques des <em>footprints</em> ionospheriques du satellite Cluster :
  41 + <ul>
  42 + <li>Radius_North, Lat_North, Lon_North</li>
  43 + <li>Radius_South, Lat_South, Lon_South</li>
  44 + </ul>
  45 + </li>
  46 + <li>Facteur de qualité des <em>footprints</em> (IMAP)</li>
  47 + <li>Facteur de qualité du vent solaire (ISWq)</li>
  48 + <li>Distance à la magnétopause (in Re) : +(-) si le satellite est, respectivement, dans (en dehors) de la magnetopause. En général, ce n'est pas la distance la plus courte par rapport à la limite mais cette distance tend asymptotiquement vers celle-ci tandis que la position du satellite dans la magnetosphère se rapproche de la magnetopause (voir T96_MGNP_08 subroutine dans Geopack-2008)</li>
  49 + <li>Coordonnées GSE du satellite Cluster (X_GSE, Y_GSE, Z_GSE, en Re)</li>
  50 + <li>Composantes GSE du champ magnétique (Bx, By, Bz) calculées avec le modèle T96</li>
  51 + </ul>
  52 + </p>
  53 +
  54 + <p class="warning">Les coordonnées des <em>footprints</em> sont : R en Rayons terrestres (Re), Lat en degrés, Lon en degrés. Dans le cas où il n'y aurait pas de <em>footprints</em>, les coordonnées de ceux-ci sont remplis par des valeurs par défaut : R -> 99.99, Lat et Lon -> 999.99, B -> 99999.99.</p>
  55 +
  56 + <h3>Facteur de qualité des <em>footprints</em> : IMAP</h3>
  57 +
  58 + <p>
  59 + <ul>
  60 + <li>IMAP = 0 : <em>Footprints</em> dans les hémisphères nord et sud</li>
  61 + <li>IMAP = 2 : <em>Footprints</em> dans l'hémisphère nord seulement</li>
  62 + <li>IMAP = 3 : <em>Footprints</em> dans l'hémisphère sud seulement</li>
  63 + <li>IMAP = 8 : Cluster est en dehors de la magnétopause (les données de vent solaire existent) --> Pas de <em>footprints</em></li>
  64 + <li>IMAP = 9 : Cluster est dans la magnétopause mais il n'y pas de <em>footprints</em> trouvé (typiquement, les lignes de champs vont au-dela du rayon limite imposé par le modèle <em>Rlim</em>); c'est également le cas lorsqu'il n'y pas de données de vent solaire (ISWq = 9)</li>
  65 + </ul>
  66 + </p>
  67 +
  68 + <h3>Facteur de qualité du vent solaire : ISWq</h3>
  69 +
  70 + <p>
  71 + <ul>
  72 + <li>ISWq = 0 : Bonne qualité (IMFFLAG=1, ISWFLAG=1)</li>
  73 + <li>ISWq = 2 : Présence d'interpolations sur des trous de données (IMFFLAG + ISWFLAG >= 3);</li>
  74 + <li>ISWq = 9 : Mauvaise qualité</li>
  75 + </ul>
  76 + </p>
  77 + </div>
  78 +
  79 +</body>
  80 +</html>
0 81 \ No newline at end of file
... ...
DOC/style.css 0 → 100644
  1 +++ a/DOC/style.css
... ... @@ -0,0 +1,118 @@
  1 +/* BASE */
  2 +html, body {
  3 +
  4 + height: 100%;
  5 +
  6 + font-family: Arial, sans-serif;
  7 + font-size: 16px;
  8 +}
  9 +
  10 +h1 {
  11 +
  12 + margin-bottom: 5rem;
  13 +
  14 + font-size: 2rem;
  15 + text-align: center;
  16 +}
  17 +
  18 +h2 {
  19 +
  20 + margin: 2rem 0;
  21 +
  22 + font-size: 1.5rem;
  23 + border-bottom: 1px solid #000;
  24 +}
  25 +
  26 +h3 {
  27 +
  28 + margin: 1rem 0;
  29 +
  30 + font-size: 1.2rem;
  31 +}
  32 +
  33 +
  34 +a {
  35 + color: inherit;
  36 + text-decoration: none;
  37 +}
  38 +
  39 +a:hover {
  40 +
  41 + color: #AAA;
  42 +}
  43 +
  44 +ul {
  45 +
  46 + list-style: square;
  47 + line-height: 2rem;
  48 +}
  49 +
  50 +summary ul {
  51 +
  52 + margin-bottom: 5rem;
  53 + padding: 1.5rem 5rem;
  54 +
  55 + border-top: 1px solid #000;
  56 + border-bottom: 1px solid #000;
  57 +
  58 + list-style: upper-roman;
  59 + line-height: 2rem;
  60 +}
  61 +
  62 +summary ul li {
  63 +
  64 + font-size: 1.5rem;
  65 +
  66 + padding-left: 15px;
  67 +}
  68 +
  69 +img {
  70 +
  71 + max-height: 600px;
  72 + max-width: 600px;
  73 + margin: auto;
  74 +}
  75 +
  76 +/* MODULES */
  77 +.container {
  78 +
  79 + margin: 0 15%;
  80 +
  81 + padding-bottom: 5rem;
  82 +}
  83 +
  84 +.code {
  85 +
  86 + height: 3rem;
  87 +
  88 + background-color: #000;
  89 + font-size: 1.2rem;
  90 + color: #FFF;
  91 +
  92 + line-height: 3rem;
  93 + text-align: center;
  94 + font-weight: bold;
  95 +}
  96 +
  97 +.info {
  98 +
  99 + padding: 0.5rem 2rem;
  100 +
  101 + border-radius: 10px;
  102 +
  103 + background-color: #AFA;
  104 +
  105 + line-height: 1.5rem;
  106 +}
  107 +
  108 +.warning {
  109 +
  110 + padding: 0.5rem 2rem;
  111 +
  112 + border-radius: 10px;
  113 +
  114 + background-color: #FAA;
  115 +
  116 + line-height: 1.5rem;
  117 +}
  118 +
... ...