Minor fixes

docs
Alinson S. Xavier 5 years ago
parent 37c3db1c5b
commit ac5bb87ce2

@ -186,19 +186,19 @@
<tbody>
<tr>
<td align="left"><code>transportation cost ($/km/tonne)</code></td>
<td>The cost to transport this product. Must be a timeseries.</td>
<td>The cost to transport this product. Must be a time series.</td>
</tr>
<tr>
<td align="left"><code>transportation energy (J/km/tonne)</code></td>
<td>The energy required to transport this product. Must be a timeseries. Optional.</td>
<td>The energy required to transport this product. Must be a time series. Optional.</td>
</tr>
<tr>
<td align="left"><code>transportation emissions (tonne/km/tonne)</code></td>
<td>A dictionary mapping the name of each greenhouse gas, produced to transport one tonne of this product along one kilometer, to the amount of gas produced (in tonnes). Must be a timeseries. Optional.</td>
<td>A dictionary mapping the name of each greenhouse gas, produced to transport one tonne of this product along one kilometer, to the amount of gas produced (in tonnes). Must be a time series. Optional.</td>
</tr>
<tr>
<td align="left"><code>initial amounts</code></td>
<td>A dictionary mapping the name of each location to its description (see below). If this product is not initially available, this key may be omitted. Must be a timeseries.</td>
<td>A dictionary mapping the name of each location to its description (see below). If this product is not initially available, this key may be omitted. Must be a time series.</td>
</tr>
</tbody>
</table>
@ -221,7 +221,7 @@
</tr>
<tr>
<td align="left"><code>amount (tonne)</code></td>
<td>The amount of the product initially available at the location. Must be a timeseries.</td>
<td>The amount of the product initially available at the location. Must be a time series.</td>
</tr>
</tbody>
</table>
@ -286,11 +286,11 @@
</tr>
<tr>
<td align="left"><code>energy (GJ/tonne)</code></td>
<td>The energy required to process 1 tonne of the input. Must be a timeseries. Optional.</td>
<td>The energy required to process 1 tonne of the input. Must be a time series. Optional.</td>
</tr>
<tr>
<td align="left"><code>emissions (tonne/tonne)</code></td>
<td>A dictionary mapping the name of each greenhouse gas, produced to process each tonne of input, to the amount of gas produced (in tonne). Must be a timeseries. Optional.</td>
<td>A dictionary mapping the name of each greenhouse gas, produced to process each tonne of input, to the amount of gas produced (in tonne). Must be a time series. Optional.</td>
</tr>
<tr>
<td align="left"><code>locations</code></td>
@ -336,11 +336,11 @@
<tbody>
<tr>
<td align="left"><code>cost ($/tonne)</code></td>
<td>The cost to dispose of the product. Must be a timeseries.</td>
<td>The cost to dispose of the product. Must be a time series.</td>
</tr>
<tr>
<td align="left"><code>limit (tonne)</code></td>
<td>The maximum amount that can be disposed of. If an unlimited amount can be disposed, this key may be omitted. Must be a timeseries.</td>
<td>The maximum amount that can be disposed of. If an unlimited amount can be disposed, this key may be omitted. Must be a time series.</td>
</tr>
</tbody>
</table>
@ -359,11 +359,11 @@
</tr>
<tr>
<td align="left"><code>fixed operating cost ($)</code></td>
<td>The cost to keep the plant open, even if the plant doesn't process anything. Must be a timeseries.</td>
<td>The cost to keep the plant open, even if the plant doesn't process anything. Must be a time series.</td>
</tr>
<tr>
<td align="left"><code>variable operating cost ($/tonne)</code></td>
<td>The cost that the plant incurs to process each tonne of input. Must be a timeseries.</td>
<td>The cost that the plant incurs to process each tonne of input. Must be a time series.</td>
</tr>
</tbody>
</table>

@ -149,11 +149,11 @@
<li><a href="usage/">Usage</a></li>
<li><a href="format/">Input and Output Data Formats</a></li>
<li><a href="reports/">Simplified Solution Reports</a></li>
<li><a href="model/">Optimization model</a></li>
<li><a href="model/">Optimization Model</a></li>
</ul>
<h3 id="source-code">Source Code</h3>
<ul>
<li><a href="https://anl-ceeesa.github.io/RELOG/">https://anl-ceeesa.github.io/RELOG/</a></li>
<li><a href="https://github.com/ANL-CEEESA/RELOG">https://github.com/ANL-CEEESA/RELOG</a></li>
</ul>
<h3 id="authors">Authors</h3>
<ul>
@ -290,5 +290,5 @@ POSSIBILITY OF SUCH DAMAGE.
<!--
MkDocs version : 1.1.2
Build Date UTC : 2020-09-18 16:19:12.522909+00:00
Build Date UTC : 2020-09-18 16:31:44.900364+00:00
-->

@ -252,7 +252,7 @@ In the third line, we have the disposal costs.</p>
\end{align}</script>
</p>
<ul>
<li>A plant is operation at time $t$ if it was operational at time $t-1$ or it was built at time $t$. This constraint also prevents a plant from being built multiple times.</li>
<li>A plant is operational at time $t$ if it was operational at time $t-1$ or it was built at time $t$. This constraint also prevents a plant from being built multiple times.</li>
</ul>
<p>
<script type="math/tex; mode=display">\begin{align}

@ -245,11 +245,12 @@ import geopandas as gp
# Plot base map
world = gp.read_file(gp.datasets.get_path('naturalearth_lowres'))
world = world[world.continent == 'North America']
ax = world.plot(color='white', edgecolor='50', figsize=(15,15))
ax = world.plot(color='white', edgecolor='50', figsize=(13,6))
ax.set_ylim([23, 50])
ax.set_xlim([-128, -65])
# Plot plant locations
data = pd.read_csv(&quot;plants_report.csv&quot;)
data = pd.read_csv(&quot;nimh_plants.csv&quot;)
points = gp.points_from_xy(data[&quot;longitude (deg)&quot;],
data[&quot;latitude (deg)&quot;])
gp.GeoDataFrame(data, geometry=points).plot(ax=ax);

File diff suppressed because one or more lines are too long

Binary file not shown.
Loading…
Cancel
Save