Skip to content

Commit

Permalink
Merge pull request #55 from daavid00/documentation
Browse files Browse the repository at this point in the history
[BUG] Fixing the rock specific heat capacity
  • Loading branch information
daavid00 authored Jun 13, 2024
2 parents 80098fe + a59dd4a commit 0dc5705
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 5 deletions.
Binary file modified docs/_images/spe11b_performance.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/_images/spe11b_sparse_data.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/_images/spe11b_tco2_2Dmaps.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions docs/_sources/examples.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ The following are some of the figures generated in the compare folder:

This example uses a very coarser grid to run fast. See the following section for finer grids.

.. warning::
There have been two bug fixes that will change some of the results below (see `this <https://github.com/OPM/pyopmspe11/pull/54>`_
and `this PR <https://github.com/OPM/pyopmspe11/pull/55>`_). We will remove this warning once we have rerun the cases and updated
the results here. Please use a version of pyopmspe11 after 13.06.2024, which includes the fixes to these two issues.

======
SPE11A
======
Expand Down
6 changes: 6 additions & 0 deletions docs/examples.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,12 @@ <h2>Hello world<a class="headerlink" href="#hello-world" title="Link to this hea
<img alt="_images/spe11b_sparse_data.png" src="_images/spe11b_sparse_data.png" />
</figure>
<p>This example uses a very coarser grid to run fast. See the following section for finer grids.</p>
<div class="admonition warning">
<p class="admonition-title">Warning</p>
<p>There have been two bug fixes that will change some of the results below (see <a class="reference external" href="https://github.com/OPM/pyopmspe11/pull/54">this</a>
and <a class="reference external" href="https://github.com/OPM/pyopmspe11/pull/55">this PR</a>). We will remove this warning once we have rerun the cases and updated
the results here. Please use a version of pyopmspe11 after 13.06.2024, which includes the fixes to these two issues.</p>
</div>
</section>
<section id="spe11a">
<h2>SPE11A<a class="headerlink" href="#spe11a" title="Link to this heading"></a></h2>
Expand Down
2 changes: 1 addition & 1 deletion docs/searchindex.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions docs/text/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ The following are some of the figures generated in the compare folder:

This example uses a very coarser grid to run fast. See the following section for finer grids.

.. warning::
There have been two bug fixes that will change some of the results below (see `this <https://github.com/OPM/pyopmspe11/pull/54>`_
and `this PR <https://github.com/OPM/pyopmspe11/pull/55>`_). We will remove this warning once we have rerun the cases and updated
the results here. Please use a version of pyopmspe11 after 13.06.2024, which includes the fixes to these two issues.

======
SPE11A
======
Expand Down
Binary file modified docs/text/figs/spe11b_performance.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/text/figs/spe11b_sparse_data.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/text/figs/spe11b_tco2_2Dmaps.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/pyopmspe11/templates/co2/spe11b.mako
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ DIFFC

SPECROCK
% for i in range(dic['noSands']):
${dic["temperature"][1]} ${dic["rockExtra"][0]}
${dic["temperature"][0]} ${dic["rockExtra"][0]} /
${dic["temperature"][1]} ${dic["rockExtra"][0]*dic["rockExtra"][1]}
${dic["temperature"][0]} ${dic["rockExtra"][0]*dic["rockExtra"][1]} /
% endfor
% endif

Expand Down
4 changes: 2 additions & 2 deletions src/pyopmspe11/templates/co2/spe11c.mako
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ DIFFC

SPECROCK
% for i in range(dic['noSands']):
${dic["temperature"][1]} ${dic["rockExtra"][0]}
${dic["temperature"][0]} ${dic["rockExtra"][0]} /
${dic["temperature"][1]} ${dic["rockExtra"][0]*dic["rockExtra"][1]}
${dic["temperature"][0]} ${dic["rockExtra"][0]*dic["rockExtra"][1]} /
% endfor
% endif

Expand Down

0 comments on commit 0dc5705

Please sign in to comment.