Skip to content

Commit

Permalink
Merge pull request #343 from lanl/jmm/update-stellar-collapse-gold
Browse files Browse the repository at this point in the history
update gold files
  • Loading branch information
Yurlungur authored Feb 12, 2024
2 parents 1ff8755 + 36ff1af commit f379be5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- [[PR#336]](https://github.com/lanl/singularity-eos/pull/336) Included code and documentation for a full, temperature consistent, Mie-Gruneisen EOS based on a pressure power law expansion in eta = 1-V/V0. PowerMG.

### Fixed (Repair bugs, etc)
- [[PR343]](https://github.com/lanl/singularity-eos/pull/343) Add chemical potentials to stellar collapse gold files
- [[PR342]](https://github.com/lanl/singularity-eos/pull/342) Fix missing using statement in stellar collapse root finding routines
- [[PR341]](https://github.com/lanl/singularity-eos/pull/341) Short-circuit HDF5 machinery when cray-wrappers used in-tree
- [[PR340]](https://github.com/lanl/singularity-eos/pull/335) Fix in-tree builds with plugin infrastructure
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ project(

list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")

set(SINGULARITY_GOLDFILES_VERSION "goldfiles-1.6.2")
set(SINGULARITY_GOLDFILES_VERSION "goldfiles-1.8.0")
set(SINGULARITY_GOLDFILE_HASH
33ef74b29937cc1347b525f72662933dd2b0556550f6541f97fc1de8a01c3c2a)
249772f3314c4b6b9386aa08895280698ae905ef188f4383b819f28c1484603b)

# ------------------------------------------------------------------------------#
# Options
Expand Down
10 changes: 10 additions & 0 deletions utils/scripts/make_tabulated_ideal_sc.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,11 @@
Xn = 1. - Xp
Abar = np.ones_like(PRS)
Zbar = np.ones_like(PRS)
mu_e = np.ones_like(PRS)
mu_n = np.ones_like(PRS)
mu_p = np.ones_like(PRS)
muhat = np.ones_like(PRS)
munu = np.ones_like(PRS)

# Output
if filename is None:
Expand Down Expand Up @@ -123,3 +128,8 @@
f.create_dataset("Xn", data = Xn)
f.create_dataset("Abar", data = Abar)
f.create_dataset("Zbar", data = Zbar)
f.create_dataset("mu_e", data = mu_e)
f.create_dataset("mu_n", data = mu_n)
f.create_dataset("mu_p", data = mu_p)
f.create_dataset("muhat", data = muhat)
f.create_dataset("munu", data = munu)

0 comments on commit f379be5

Please sign in to comment.