Skip to content
Snippets Groups Projects
Commit 1aa4f8a4 authored by Izzard, Robert Dr (Maths & Physics)'s avatar Izzard, Robert Dr (Maths & Physics)
Browse files

update CHANGES for V2.2.0

 fixed memory leak on disc append
parent df00e92a
No related branches found
No related tags found
No related merge requests found
V2.2.0
Lots of updates for you in binary_c V2.2.0
The circumbinary discs paper has been submitted, and all the discs code is in 2.2.0. Part of this was adding new post-AGB winds from Krticka, Kubát and Krticková (2020).
There are many updates to the ensemble logging, including Gaia HRDs and logP-loge diagrams.
MINT has improved vastly: the main-sequence works great, as does CHeB. This is not (yet) enabled by default. Please see tbse.mint and download stellar model data from http://personal.ph.surrey.ac.uk/~ri0005/MINT/
Associated with this are changes to how tides are computed so we can properly use Zahn's theories.
Binary_c-python is working well, please check out the repository at
https://gitlab.eps.surrey.ac.uk/ri0005/binary_c-python
Tom Comerford's triples work is in, but still considered experimental. If anyone has time to go through this to check it, there's a lot of great science waiting to happen.
New "orbiting objects" code, so you can simulate (currently very simply) planets orbital around stars. Detects when they are swallowed, tidal interactions, wind accretion, etc. This is another part of binary_c that could easily be greatly improved with lots of fun science to be done.
Also synced the latest Perl modules and versions of librinterpolate, librchash and libmemoize.
Lots of little bug fixes too, of course.
V2.1.7
Changes made after running through clang's static analyzer. None of the
......
......@@ -69,8 +69,10 @@ void disc_initialize_disc(struct stardata_t * const stardata,
disc->prevzone = DISC_NO_PREVZONE_YET;
#endif
#ifdef MEMOIZE
disc->memo = NULL;
memoize_initialize(&disc->memo);
if(disc->memo==NULL)
{
memoize_initialize(&disc->memo);
}
#endif
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment