35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
{% extends 'base.html' %}
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
<h1>Diffusion coefficient</h1>
|
|
<h2> {{ standard_name|safe }} </h2>
|
|
<table class="table w-auto table-responsive-sm table-striped table-hover table-bordered">
|
|
<caption>
|
|
<p>
|
|
<a href="https://doi.org/10.1039/B005319H" >Temperature-dependent self-diffusion coefficients of water and six selected molecular liquids for calibration in accurate 1H NMRPFG measurements</a>
|
|
Holz et al. Phys. Chem. Chem. Phys., 2000, 2, 4740-4742
|
|
</p>
|
|
<p>
|
|
<a href="http://dx.doi.org/10.1021/acs.jced.5b00246">Viscous Calibration Liquids for Self-Diffusion Measurements</a>, K. R. Harris et al. Journal of Chemical & Engineering Data 2015 60 (12), 3506-3517
|
|
</p>
|
|
</caption>
|
|
<thead class="table-dark">
|
|
<tr>
|
|
<th scope="col">T/K</th>
|
|
<th scope="col">T/°C</th>
|
|
<th scope="col">D/m²s⁻¹</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<tr>
|
|
<td>{{ temperature_kelvin|stringformat:".2f" }}</td>
|
|
<td>{{ temperature_celsius|stringformat:".2f" }}</td>
|
|
<td>{{ diffusion_constant|stringformat:".3e" }}</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endblock %} |