amuse
amuse copied to clipboard
Astrophysical Multipurpose Software Environment. This is the main repository for AMUSE
**Is your feature request related to a problem? Please describe.** Tulips (https://bitbucket.org/elaplace/tulips/, by @evalaplace) is a tool to create diagrams of the structure and evolution of stars. It currently works...
propose to remove set_acceleration from the gravitational dynamics interface..its hardly implemented anywhere and I am not sure why it is there (no consistent use case..)
Hello, I am attempting to install amuse on a brand new mac and am running into some issues. I believe all prerequisites are properly installed, however, when I run `pip...
for some packages, the install doesn't include data directories. These could/should be moved to the code dirs themselves but this needs some fixes (see also #391): codes with input data:...
The stopping condition library currently has the following stopping conditions: ``` PARAMETER (COLLISION_DETECTION=0) PARAMETER (PAIR_DETECTION=1) PARAMETER (ESCAPER_DETECTION=2) PARAMETER (TIMEOUT_DETECTION=3) PARAMETER (NUMBER_OF_STEPS_DETECTION=4) PARAMETER (OUT_OF_BOX_DETECTION=5) PARAMETER (DENSITY_LIMIT_DETECTION=6) PARAMETER (INTERNAL_ENERGY_LIMIT_DETECTION=7) PARAMETER (INTERACTION_OVER_DETECTION=8) PARAMETER...
Codes with parrticle boolean attributes cause an issue with some versions of numpy, it relates to the fact that codes return int8 for boolean output arguments, while if a particle...
the following works: ``` from amuse.io import write_set_to_file from amuse.datamodel import Grid g=Grid(10,10,10) g.z=1 sg=g[1:5,2:5,:] write_set_to_file(sg,"subgrid","amuse") ``` but the write_set_to_file seems to break when sg is a subgrid of an...
ce7207c5da1b25103eecda7104628b65646f8270 has changed p.x from returning a copy to returning a reference to data. This introduces different behaviour for in-memory sets and in-code sets, difference between grids and Particles, and...
currently secularmultiple is broken unless compiled with -O0. secularmultiple is available on github seperately now with some fixes; it should be updated in amuse. it can be linked to this...