Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Two Fluids primordial model #160

Merged
merged 33 commits into from
May 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
4be6b65
Fixing wrong macros.
vitenti Jan 16, 2024
677fe7b
Merge branch 'master' into twofluids
vitenti Jan 24, 2024
57c89a5
New notebook where we compute perturbations for the two fluid model. …
LFD103108 Jan 24, 2024
cfc3949
Merge branch 'master' into twofluids
vitenti Feb 5, 2024
34a4f0b
Updates on two fluids code and notebook.
vitenti Feb 8, 2024
4a7b33b
New two fluids primordial object.
vitenti Apr 23, 2024
e9781f9
Merge branch 'master' into twofluids
vitenti Apr 23, 2024
346f99a
Merge branch 'two_fluid_hiprim' into twofluids
vitenti Apr 23, 2024
3a8d8a4
New HIPrimTwoFluid model.
vitenti Apr 23, 2024
f41c48e
Including two_point model in the app experiment generator.
vitenti Apr 24, 2024
df0b73a
Registring two_fluids model.
vitenti Apr 24, 2024
544ba99
Extending calibration to w = 1.0e-7.
vitenti Apr 24, 2024
284ed7e
Added option to skip catalog validation when continuing a MCMC.
vitenti Apr 24, 2024
6253c46
Better logic to use skip_check.
vitenti Apr 24, 2024
f7991d2
Fixed bug in calc_param_ensemble_evol.
vitenti May 5, 2024
3ae61de
Save plot option.
vitenti May 5, 2024
a7cfea2
Calibrating model.
vitenti May 5, 2024
001d514
mcmc_file is now non-optional.
vitenti May 6, 2024
7c48d10
Fixed default value.
vitenti May 9, 2024
1f9264a
Adding log_file option to numcosmo.
vitenti May 9, 2024
1d487f1
Merge branch 'master' into twofluids
vitenti May 19, 2024
c3bdac6
Fixed merge.
vitenti May 19, 2024
739dd4f
Merge branch 'master' into twofluids
vitenti May 19, 2024
a98dd37
Tests for nc_hiprim_two_fluids.
vitenti May 20, 2024
5374c76
Adding tests for hipert_two_fluids.
vitenti May 20, 2024
3de07ef
Testing new ensemble evol methods.
vitenti May 20, 2024
983a9ba
Adding tests for output.
vitenti May 20, 2024
c0a93d9
More tests for ncm_fit_esmcmc.
vitenti May 20, 2024
9daa3cb
More testing for hipert_two_fluids.
vitenti May 20, 2024
1433df8
Increasing number of point in fftlog jljm.
vitenti May 20, 2024
9dfaa92
Fixed old edge case.
vitenti May 20, 2024
79a5b53
Added extra safe-guard.
vitenti May 20, 2024
3737ded
Removing coveralls upload.
vitenti May 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -247,11 +247,11 @@ jobs:
# # ninja coverage -C build -v -d stats -d explain
# run: |
# gcovr --root . --object-directory build --config gcovr.cfg --xml-pretty -o build/meson-logs/coverage.xml
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
files: ./numcosmo-coverage.info
format: lcov
github-token: ${{ secrets.GITHUB_TOKEN }}
#- name: Coveralls
# uses: coverallsapp/github-action@v2
# with:
# files: ./numcosmo-coverage.info
# format: lcov
# github-token: ${{ secrets.GITHUB_TOKEN }}


Binary file added data/hiprim_2f_spline.bin
Binary file not shown.
1 change: 1 addition & 0 deletions docs/numcosmo-docs.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@
<xi:include href="xml/nc_hiprim_expc.xml"/>
<xi:include href="xml/nc_hiprim_bpl.xml"/>
<xi:include href="xml/nc_hiprim_sbpl.xml"/>
<xi:include href="xml/nc_hiprim_two_fluids.xml"/>
</section>
</chapter>

Expand Down
6 changes: 6 additions & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,12 @@ endif
numcosmo_conf.set('HAVE_LIBCUBA', 1)
numcosmo_conf.set('HAVE_LIBCUBA_4_0', 1)

#######################################################################################
# Using internal sundials:
#######################################################################################

numcosmo_conf.set('HAVE_SUNDIALS_ARKODE', 1)

#######################################################################################
# Checking for NLopt (optional):
#######################################################################################
Expand Down