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 e5ae2756c676d382a43d2113771c9188748a2e83
parent 1b3fb9eb513664198d1d79468791fe9c1fa24a04
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Tue, 28 Nov 2017 10:09:36 +0100

First try at giving an example of propagator use

Diffstat:
Mstardis.html.in | 105+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 105 insertions(+), 0 deletions(-)

diff --git a/stardis.html.in b/stardis.html.in @@ -1,3 +1,57 @@ +<!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; Solstice</title> + <link rel="stylesheet" title="default" href="meso.css"> +</head> + +<body> +<div id="menu"> + <h2><a href=index.html>About</a></h2> + <h2><a href=schiff.html>Schiff</a></h2> + <h2>Solstice</h2> + <div id=sub-menu> + <ul> + <li id=cur>Overview</li> + <li>Reference documentation</li> + </ul> + <ul id=lvl2> + <li><a href="man/man1/solstice.1.html">solstice</a></li> + <li><a href="man/man5/solstice-input.5.html">solstice-input</a></li> + <li><a href="man/man5/solstice-output.5.html">solstice-output</a></li> + <li><a href="man/man5/solstice-receiver.5.html">solstice-receiver</a></li> + </ul> + <ul> + <li><a href=solstice-downloads.html>Downloads</a></li> + <li><a href=solstice-resources.html>Additional resources</a></li> + <li><a href=https://gitlab.com/meso-star/solstice>Source code repository</a></li> + </ul> + <div id="info"> + <p>Solstice is developped by <a + href="https://www.meso-star.com">|Méso|Star&gt;</a> in collaboration with + the <a href="http://www.labex-solstice.fr/">Laboratory of Excellence + Solstice</a> and the <a + href="http://www.promes.cnrs.fr/index.php?page=home-en">PROMES</a> + laboratory of the National Center for Scientific Research. It is copyright + &#169; <a href="http://www.cnrs.fr/index.php">CNRS</a> 2016-2017.</p> + </div> + </div> + <h2><a href=pgp_signatures.html>PGP signatures</a></h2> +</div> +<div id=content> + + + + + + +</body> + + + <header> <h1>Stardis - The Monte-Carlo solver for coupled thermal problems</h1> </header> @@ -35,6 +89,57 @@ solve radiative transfer by sampling optical paths. An interesting property of this approach is that the resulting algorithms does not rely on a volume mesh of the system. </p> + +<h2>An example of propagator use</h2> + +<div class="img" style="width: 12em"> + <a href="igbt.png"> + <img src="igbt.png" style="float: relative" alt="IGBT"> + </a> + <div class="caption">The IGBT model.</div> + <a href="green2.png"> + <img src="green2.png" style="float: relative" alt="GREEN"> + </a> + <div class="caption">A visualization of the propagator.</div> +</div> + +<p>Here is an example of practical use of a propagator (Green function), +obtained by using the Stardis solver on a basic IGBT: +<ul> + <li> the object of interest is an IGT, + <li> in this simple setting, the limit conditions of the system are fully + defined by the top and bottom tempatures, + <li> the value of interest is the core temperature in the red-colored + region of the IGBT (see <i>The IGBT model</i> figure), + <li> the propagator has been precomputed using the Stardis Monte-Carlo + solver from the 3D description of the model and the materials properties + (see <i>A visualization of the propagator</i> figure), + <li> on request, the propagator is applied to the user-provided temperatures; + it acts as a super-fast direct model to compute the value of the core + temperature, + <li> as it carries temporal information, the propagator could be used in + transient computations; in this case the two input temperatures would + be temporal data. +</ul> +</p> + +<div> +<script src="green_script.js"></script> + +Top temperature: + <input type="text" id="T_1" value="" onChange="ClearRes()"><br> + +Bottom temperature: + <input type="text" id="T_2" value="" onChange="ClearRes()"><br> + +<button name="GrBtn" onclick="Green(document.GreenCalc)"> + Apply propagator!</button><br> + +Core temperature: +<input type="text" id="T_res" value="---" readonly> +/- +<input type="text" id="T_res_std" value="---" readonly> +</div> + <h2>Get Stardis</h2> <p>Stardis is not a monolothic software, it's <b>a solver which can be