Diffusion ctracker3 (master)
Recent Commits
Recent Commits
Commit | Author | Details | Committed | ||||
---|---|---|---|---|---|---|---|
7c2107a58fbe | serex | bugfix for NetCDF sizes | Oct 16 2017 | ||||
027564a7d407 | serex | Looping over the same period of time is implemented. | Oct 16 2017 | ||||
14bd095b4304 | serex | less verbose loop | Oct 16 2017 | ||||
022e0c23f2fb | serex | less verbose | Oct 11 2017 | ||||
4b019f63c886 | serex | still debug | Oct 10 2017 | ||||
f749af085f7e | serex | verbose debugging | Oct 10 2017 | ||||
379552de8c7b | serex | stop tracking config files | Oct 5 2017 | ||||
a51e1355c4a0 | serex | change config | Oct 5 2017 | ||||
a467ebb0a232 | serex | optimisation | Oct 4 2017 | ||||
f6e6f2878989 | serex | longer sim | Oct 4 2017 | ||||
b350b91966ee | serex | new test version | Oct 4 2017 | ||||
8df95e780247 | serex | longer simulation | Oct 4 2017 | ||||
c0f5da355d65 | serex | small join fix | Oct 4 2017 | ||||
f26cb80ab457 | serex | corrected test change | Oct 4 2017 | ||||
e3e64ec03749 | serex | particle tracking while computing sim time | Oct 4 2017 |
README.md
README.md
C-tracker
A Lagrangian particle tracker for hydrodynamic numerical simulations. It is written in python 3.6 with the numerical parts using cython. The numerical part reproduces the results of tracmass code (https://github.com/TRACMASS/tracmass) by Döös et al., despite some (relatively minor) changes in the algorithm. It is developed for use with MITgcm results, but any C- (or B-) grid model could be used as a source for the hydrodynamic fields.
To install:
python setup.py build_ext --inplace
For using non-default compilers, use e.g:
LDSHARED="icc -shared" CC=icc python setup.py build_ext --inplace
For intel C compiler, a good set of options is:
LDSHARED="icc -shared" CC=icc CFLAGS="-O3 -xHOST -ipo -static -fp-model source" python setup.py build_ext --inplace
It seems that the results are very stable to aggressive optimization.
For questions, comments, issues, please contact Andrea Cimatoribus @ epfl https://people.epfl.ch/andrea.cimatoribus
c4science · Help