meso-web

Sources of the |Méso|Star> website
git clone git://git.meso-star.fr/meso-web.git
Log | Files | Refs | README | LICENSE

commit 03b1dbbec7441b21f3d197ed7cc17b52bad1efb3
parent 84e3d06ea43646fd1b1fc7bca24f8d96d51e63c2
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Fri, 23 Nov 2018 12:16:18 +0100

Remove the generated high-tune.html file

Diffstat:
M.gitignore | 1+
Dhigh-tune/high-tune.html | 157-------------------------------------------------------------------------------
2 files changed, 1 insertion(+), 157 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -2,6 +2,7 @@ kspectrum.html schiff.html stardis.html about.html +high-tune.html pgp_signatures.html solstice.html solstice-downloads.html diff --git a/high-tune/high-tune.html b/high-tune/high-tune.html @@ -1,157 +0,0 @@ -<!DOCTYPE html> - -<html lang=en> -<head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> - <meta name="viewport" content="width=device-width, initial-scale=1"> - <title>|M|S&gt; High-Tune</title> - <link rel="stylesheet" title="default" href="../meso.css"> -</head> - -<body> -<div id="menu"> - <h2><a href=../misc/about.html>About</a></h2> - <h2>High-Tune</h2> - <div id=sub-menu> - <ul> - <li id=cur>Overview</li> - <li>Reference documentation</li> - </ul> - <ul id=lvl2> - <li><a href="../high-tune/man/man5/htcp.5.html">htcp</a></li> - <li><a href="../high-tune/man/man5/htmie.5.html">htmie</a></li> - <li><a href="../high-tune/man/man1/htpp.1.html">htpp</a></li> - <li><a href="../high-tune/man/man1/htrdr.1.html">htrdr</a></li> - <li><a href="../high-tune/man/man5/htrdr-image.5.html">htrdr-image</a></li> - <li><a href="../high-tune/man/man1/les2htcp.1.html">les2htcp</a></li> - </ul> - <ul> - <li><a href=https://gitlab.com/meso-star/htrdr>Source code repository</a></li> - </ul> - <div id="info"> - <p>High-Tune copyright &#169; 2018 - <a href="https://www.meso-star.com">|Méso|Star&gt;</a>, - National Center for Scientific Research (CNRS), - Université Paul Sabatier. - </div> - </div> - <h2><a href=../kspectrum/kspectrum.html>Kspectrum</a></h2> - <h2><a href=../schiff/schiff.html>Schiff</a></h2> - <h2><a href=../solstice/solstice.html>Solstice</a></h2> - <h2><a href=../stardis/stardis.html>Stardis</a></h2> - <h2><a href=../star-engine/star-engine.html>Star-Engine</a></h2> - <h2><a href=../misc/pgp_signatures.html>PGP signatures</a></h2> -</div> -<div id=content> -<header> - <h1>HTRDR - Image renderer of cloudy atmospheres</h1> -</header> - -<div class="news"> - <p><b>High-Tune: RenDeRer 0.0.0</b></p> - <ul> - <li>GNU/Linux: - <a href="downloads/High-Tune-0.0.0-GNU-Linux64.tar.gz">tarball</a> / - <a href="downloads/High-Tune-0.0.0-GNU-Linux64.tar.gz.sig">pgp</a></li> - <li>Sources: - <a href="downloads/High-Tune-0.0.0-Sources.tar.gz">tarball</a> / - <a href="downloads/High-Tune-0.0.0-Sources.tar.gz.sig">pgp</a></li> - </ul> -</div> - -<p>High Tune: RenDeRer (<code>htrdr</code>) is a part of the <a -href=http://www.umr-cnrm.fr/high-tune/>High-Tune</a> project: it illustrates -the implementation of efficient <b>radiative transfer</b> algorithms in -<b>inhomogeneous media</b>. It is actually an <b>image renderer</b> in the -visible part of the spectrum, for scenes composed of an atmospheric gas -mixture, clouds and a ground. It uses spectral data that should be provided for -the pressure and temperature atmospheric vertical profile, the liquid water -content in suspension within the clouds that is a result of Large Eddy -Simulation computations, and the optical properties of water droplets that have -been obtained from a Mie code. - -<p><code>htrdr</code> evaluates the intensity incoming on each pixel of the -sensor array. The underlying algorithm is based on a <b>Monte-Carlo</b> method: -it consists in simulating a given number of optical paths originating from the -camera, directed into the atmosphere, taking into account light absorption and -scattering phenomena. The computation is performed over the whole visible part -of the spectrum, for the three components of the CIE 1931 XYZ colorimetric -space that are subsequently recombined in order to obtain the final color for -each pixel, and finally the whole image of the scene as seen from the required -observation position. - -<p>During the simulation, <code>htrdr</code> <b>dynamically loads/unloads</b> -cloud properties and thus it can handle clouds whose data do not feat in main -memory. Furthermore, in addition of a <b>shared memory parallelism</b>, -<code>htrdr</code> relies on the <a href="https://www.mpi-forum.org/">Message -Passing Interface</a> specification to parallelise its computations in a -<b>distribute memory</b> environment; the <code>htrdr</code> binary can thus be -run either directly or through a MPI process launcher like <code>mpirun</code>. - -<h2>A straight interface</h2> - -<div class="img" style="width: 16em"> - <a href="DZVAR.png"> - <img src="DZVAR.png" alt="Repeated clouds"> - </a> - <div class="caption"> - Examples of cloudy scene rendered with <code>htrdr</code> - </div> -</div> - -<p><code>htrdr</code> is a <b>command-line tool</b> that performs computations -on input data, writes the rendered image and nothing more. No assumption is -made on how input data are created excepted that they have to follow the -expected file formats. In the same spirit, the output image is written in plain -text, as a list of raw pixel estimations, making easier the processing of its -data. - -<p>This thin interface is, by nature, particularly well suited to be -<b>extended</b> and <b>integrated</b> into a any workflow. For instance, one -can save the cloud properties directly in the "High-Tune: cloud properties" -format (<a href=man/man5/htcp.5.html>htcp</a>) or use the <a -href=man/man1/les2htcp.1.html>les2htcp</a> tool to convert cloud properties -from <a href="https://www.unidata.ucar.edu/software/netcdf/">NetCDF</a> to -<code>htcp</code>. In the same way, the output image can be post-treated -through <a href="http://www.gnuplot.info">gnuplot</a> or converted in a regular -PPM image by the <a href="man/man1/htpp.1.html">htpp</a> program, and then -visualised in an image viewer as for instance <a -href="https://feh.finalrewind.org/">feh</a> or <a -href="https://imagemagick.org/script/display.php">display</a>. - -<h2>Quick start</h2> - -<p>Download the desired archive of <code>htrdr</code> and verify its integrity -against its <a href=../misc/pgp_signatures.html>PGP signature</a>. Then extract -it. Finally source the provided <code>high_tune.profile</code> file to register -<code>htrdr</code> against the current shell.</p> - -<pre class="code"> -$ source ~/High-Tune-0.0.0-GNU-Linux64/etc/high_tune.profile -$ htrdr -h -</pre> - -<p>The <b>reference documentation</b> of the <code>htrdr</code> program and -some of its associated file formats is provided trough man pages. Use the -<code>man</code> command-line to consult it.</p> - -<pre class="code"> -$ man htrdr -$ man htrdr-image -$ man htcp -$ man htmie -</pre> - -<h2>License</h2> - -<p><code>htrdr</code> is free software released under the GPLv3+ license: GNU -GPL version 3 or later. You are welcome to redistribute it under certain -conditions; refer to the -<a href="https://www.gnu.org/licenses/gpl.html">license</a> for details.</p> -</div> -<div id=footer> -Phone: +33561556830&nbsp;&nbsp;|&nbsp;&nbsp; -<a href=mailto:contact@meso-star.com>Email us</a>&nbsp;&nbsp;|&nbsp;&nbsp; -&#169; 2015-2018 |Méso|Star&gt; -</div> -</body>