-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #545 from danieljprice/grdisc-with-stars
set_orbit: Add arbitrary stars on arbitrary orbits; add stars orbiting the black hole to a grdisc simulation; cleanup of SETUP=binary
- Loading branch information
Showing
30 changed files
with
1,118 additions
and
576 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,52 +21,53 @@ Rebecca Nealon <[email protected]> | |
Elisabeth Borchert <[email protected]> | ||
Ward Homan <[email protected]> | ||
Christophe Pinte <[email protected]> | ||
Yrisch <[email protected]> | ||
Terrence Tricco <[email protected]> | ||
Stephane Michoulier <[email protected]> | ||
Simone Ceppi <[email protected]> | ||
Yrisch <[email protected]> | ||
Spencer Magnall <[email protected]> | ||
Enrico Ragusa <[email protected]> | ||
Caitlyn Hardiman <[email protected]> | ||
Sergei Biriukov <[email protected]> | ||
Cristiano Longarini <[email protected]> | ||
Giovanni Dipierro <[email protected]> | ||
Roberto Iaconi <[email protected]> | ||
Amena Faruqi <[email protected]> | ||
Hauke Worpel <[email protected]> | ||
Amena Faruqi <[email protected]> | ||
Alison Young <[email protected]> | ||
Stephen Neilson <[email protected]> | ||
Martina Toscani <[email protected]> | ||
Benedetta Veronesi <[email protected]> | ||
Simon Glover <[email protected]> | ||
Sahl Rowther <[email protected]> | ||
Thomas Reichardt <[email protected]> | ||
Sahl Rowther <[email protected]> | ||
Simon Glover <[email protected]> | ||
Jean-François Gonzalez <[email protected]> | ||
Christopher Russell <[email protected]> | ||
Phantom benchmark bot <[email protected]> | ||
Jolien Malfait <[email protected]> | ||
Alex Pettitt <[email protected]> | ||
Alessia Franchini <[email protected]> | ||
Jolien Malfait <[email protected]> | ||
Phantom benchmark bot <[email protected]> | ||
Nicole Rodrigues <[email protected]> | ||
Kieran Hirsh <[email protected]> | ||
Farzana Meru <[email protected]> | ||
Nicole Rodrigues <[email protected]> | ||
Mike Lau <[email protected]> | ||
Nicolás Cuello <[email protected]> | ||
Farzana Meru <[email protected]> | ||
David Trevascus <[email protected]> | ||
Mike Lau <[email protected]> | ||
Miguel Gonzalez-Bolivar <[email protected]> | ||
Chris Nixon <[email protected]> | ||
Orsola De Marco <[email protected]> | ||
Miguel Gonzalez-Bolivar <[email protected]> | ||
Maxime Lombart <[email protected]> | ||
Joe Fisher <[email protected]> | ||
Giulia Ballabio <[email protected]> | ||
Benoit Commercon <[email protected]> | ||
Zachary Pellow <[email protected]> | ||
s-neilson <[email protected]> | ||
Steven Rieder <[email protected]> | ||
Taj Jankovič <[email protected]> | ||
Chunliang Mu <[email protected]> | ||
Benoit Commercon <[email protected]> | ||
Orsola De Marco <[email protected]> | ||
MICHOULIER Stephane <smichoulier@sidus11> | ||
Jorge Cuadra <[email protected]> | ||
Stéven Toupin <[email protected]> | ||
Taj Jankovič <[email protected]> | ||
Cox, Samuel <[email protected]> | ||
Jeremy Smallwood <[email protected]> | ||
Stéven Toupin <[email protected]> | ||
Hugh Griffiths <[email protected]> | ||
Chunliang Mu <[email protected]> | ||
Jorge Cuadra <[email protected]> | ||
Steven Rieder <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
# | ||
# Written by Daniel Price, 2012-2023, [email protected] | ||
# | ||
if [ X$SYSTEM == X ]; then | ||
if [ "X$SYSTEM" == "X" ]; then | ||
echo "Error: Need SYSTEM environment variable set to check PHANTOM build"; | ||
echo "Usage: $0 [max idim to check] [url]"; | ||
exit; | ||
|
@@ -77,7 +77,6 @@ listofcomponents='main setup analysis utils'; | |
# get list of targets, components and setups to check | ||
# | ||
allsetups=`grep 'ifeq ($(SETUP)' $phantomdir/build/Makefile_setups | grep -v skip | cut -d, -f 2 | cut -d')' -f 1` | ||
#allsetups='star' | ||
setuparr=($allsetups) | ||
batchsize=$(( ${#setuparr[@]} / $nbatch + 1 )) | ||
offset=$(( ($batch-1) * $batchsize )) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.