-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #428 from lanl/jmm/joss-comments
Changes from round of JOSS review
- Loading branch information
Showing
11 changed files
with
33 additions
and
11 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,16 +9,26 @@ At it's most basic, you can download and compile ``singularity-eos`` with: | |
git clone --recursive [email protected]:lanl/singularity-eos.git | ||
cd singularity-eos | ||
mkdir bin | ||
cd bin | ||
cmake -DSINGULARITY_FORCE_SUBMODULE_MODE=ON -DSINGULARITY_USE_FORTRAN=OFF .. | ||
make -j | ||
make install # optional: install into directory defined via CMAKE_INSTALL_PREFIX | ||
cmake -B builddir -S . -DSINGULARITY_FORCE_SUBMODULE_MODE=ON -DSINGULARITY_USE_FORTRAN=OFF -DSINGULARITY_BUILD_EXAMPLES=ON | ||
cmake --build builddir --parallel | ||
cmake --install builddir # optional: install into directory defined via CMAKE_INSTALL_PREFIX | ||
This will download ``singularity-eos`` with no optional dependencies and | ||
compile the capabilities available in that form. For more details, see | ||
:ref:`our build page <building>`. | ||
|
||
Once compiled, you can quickly check your builddir/install by going to | ||
``builddir/example`` and running ``./get_sound_speed_press``. You should be | ||
able to see the following output: | ||
|
||
.. code-block:: | ||
The final values are: | ||
rho = 0.987467 | ||
uu = 0.00987467 | ||
P = 0.0059248 | ||
cs = 0.0979796 | ||
If the library is in your include and lib paths (or you built it | ||
in-tree), you can include the ``eos`` part of the library with | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters