1
0
Fork 0
mirror of https://github.com/cosmo-sims/monofonIC.git synced 2024-09-19 17:03:45 +02:00
monofonIC/README.md

26 lines
785 B
Markdown
Raw Normal View History

2019-09-04 12:29:48 +02:00
# monofonIC
2019-05-09 21:52:55 +02:00
2019-09-04 12:29:48 +02:00
High order LPT/QPT tool for single resolution simulations
## Build Instructions
Clone code including submodules (currently only CLASS is used as a submodule):
git clone --recurse-submodules https://ohahn@bitbucket.org/ohahn/monofonic.git
Create build directory, configure, and build:
mkdir monofonic/build; cd monofonic/build
ccmake ..
make
this should create an executable in the build directory.
There is an example parameter file 'example.conf' in the main directory
2019-12-19 12:52:08 +01:00
If you run into problems with CMake not being able to find your local FFTW3 or HDF5 installation, it is best to give the path directly as
FFTW3_ROOT=<path> HDF5_ROOT=<path> ccmake ..
make sure to delete previous files generated by CMake before reconfiguring like this.