Skip to content

Commit

Permalink
Two Fluids primordial model (#160)
Browse files Browse the repository at this point in the history
* New notebook where we compute perturbations for the two fluid model.
* Updates on two fluids code and notebook.
* New HIPrimTwoFluid model.
* New notebook with HIPrimTwoFluid calibration code.
* Updated CMB experiments to use omega parametrization.
* Including two_point model in the app experiment generator.
* Registering two_fluids model.
* Extending calibration to w = 1.0e-7.
* Added option to skip catalog validation when continuing a MCMC.
* Better logic to use skip_check.
* Fixed bug in calc_param_ensemble_evol.
* Updated docstring and added more catalog related tools.
* Save plot option.
* Calibrating model.
* mcmc_file is now non-optional.
* Fixed default value.
* Adding log_file option to numcosmo.
* Tests for nc_hiprim_two_fluids.
* Adding tests for hipert_two_fluids.
* Testing new ensemble evol methods.
* Adding tests for output.
* More tests for ncm_fit_esmcmc.
* More testing for hipert_two_fluids.
* Increasing number of point in fftlog jljm.
* Fixed old edge case.
* Added extra safe-guard.
* Removing coveralls upload.

---------

Co-authored-by: Luiz Demétrio <demetrio.luizfelipe.fis@gmail.com>
  • Loading branch information
vitenti and LFD103108 committed May 20, 2024
1 parent 8c8f4ff commit ffa6d15
Show file tree
Hide file tree
Showing 37 changed files with 4,974 additions and 158 deletions.
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
Loading

0 comments on commit ffa6d15

Please sign in to comment.