Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mass transfer #616

Merged
merged 20 commits into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,4 @@ Yann Bernard <yann.bernard@univ-grenoble-alpes.fr> Yrisch <yannbernard13@gmail.c
David Bamba <dbambague@unal.edu.co> DavidBamba <dbambague@unal.edu.co>
Amber Tilly <amber.abs@gmail.com> AmberBTilly <124104643+AmberTilly@users.noreply.github.com>
Ryosuke Hirai <ryosuke.lufc@gmail.com> ryosuke-hirai <ryosuke.lufc@gmail.com>

Ana Lourdes Juarez <analourdesjg17@gmail.com> analulujg <analourdesjg17@gmail.com>
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Sergei Biriukov <svbiriukov@gmail.com>
Giovanni Dipierro <giovanni.dipierro@leicester.ac.uk>
Roberto Iaconi <robertoiaconi1@gmail.com>
Amena Faruqi <Amena.Faruqi@warwick.ac.uk>
Ana Lourdes Juarez <analourdesjg17@gmail.com>
Hauke Worpel <hworpel@aip.de>
Alison Young <alison.young@ed.ac.uk>
Stephen Nielson <stephen.neilson@students.mq.edu.au>
Expand All @@ -52,7 +53,6 @@ Phantom benchmark bot <ubuntu@phantom-benchmarks.novalocal>
Ryosuke Hirai <ryosuke.lufc@gmail.com>
Kieran Hirsh <kieran.hirsh1@monash.edu>
Nicole Rodrigues <nicole.rodrigues@monash.edu>
Ana Lourdes Juarez <analourdesjg17@gmail.com>
David Trevascus <dtre10@student.monash.edu>
Farzana Meru <f.meru@warwick.ac.uk>
Nicolás Cuello <cuello.nicolas@gmail.com>
Expand Down
3 changes: 2 additions & 1 deletion build/Makefile_setups
Original file line number Diff line number Diff line change
Expand Up @@ -858,9 +858,10 @@ endif
ifeq ($(SETUP), masstransfer)
# Wind tunnel setup
SETUPFILE= setup_masstransfer.f90
SRCINJECT= utils_binary.f90 set_binary.f90 inject_windtunnel.f90
GRAVITY=yes
KNOWN_SETUP=yes
IND_TIMESTEPS=yes
IND_TIMESTEPS=no
ANALYSIS=analysis_common_envelope.f90
endif

Expand Down
4 changes: 2 additions & 2 deletions src/main/eos.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1512,12 +1512,12 @@ subroutine read_headeropts_eos(ieos,hdr,ierr)
if (id==master) then
if (maxvxyzu >= 4) then
if (use_krome) then
if (iverbose >= 0) write(iprint,*) 'KROME eos: initial gamma = 1.666667'
if (iverbose >= 0) write(iprint,*) 'KROME eos: initial gamma = 1.666667'
else
if (iverbose >= 0) write(iprint,*) 'adiabatic eos: gamma = ',gamma
endif
else
if (iverbose >= 0) write(iprint,*) 'setting isothermal sound speed^2 (polyk) = ',polyk,' gamma = ',gamma
if (iverbose >= 0) write(iprint,*) 'setting isothermal sound speed^2 (polyk) = ',polyk,' gamma = ',gamma
if (polyk <= tiny(polyk)) write(iprint,*) 'WARNING! sound speed zero in dump!, polyk = ',polyk
endif
endif
Expand Down
1 change: 1 addition & 0 deletions src/main/externalforces_gr.f90
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ module externalforces
integer, parameter, public :: iext_corot_binary = -7
integer, parameter, public :: iext_gwinspiral = -8
integer, parameter, public :: iext_densprofile = -9
real, public :: omega_corotate = 0.

!
! Human-readable labels for these
Expand Down
Loading
Loading