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

Pgstar inlist arrays #552

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
93915d6
[ci skip] introduce pgstar_array_length
Jun 7, 2023
0964afb
[ci skip] change the individual plotting routines to take array_index
Jun 9, 2023
e80341f
[ci skip] change plot_interface to allow for extra parameter
Jun 13, 2023
cfaee5b
[ci skip] implement new interfaces in named plots
Jun 13, 2023
b656327
[ci skip] clean up defaults and io
Jun 13, 2023
a8c79e2
[ci skip] apply array_index to 'arrayified' plots
Jun 13, 2023
6550cf0
[ci skip] point pgstar to modified functions
Jun 13, 2023
49c27b6
[ci skip] array_ix not optional, plot structure needs to know what ar…
Jun 13, 2023
9db0ce6
[ci skip] remove present() statements; pgstar_summary.f90 also needs …
Jun 13, 2023
bee225c
[ci skip] array_ix change in other pgstar plot
Jun 13, 2023
c2fd68b
[ci skip] fix to defaults
Jun 13, 2023
21bbeda
testing commit
Jun 13, 2023
3e926ce
adapt pgbinary for arrayified pgstar
Jun 13, 2023
0c9c994
adapt astero for arrayified pgstar
Jun 14, 2023
9aa83a7
eliminate superfluous indices for counting number of plots
Jun 14, 2023
9f67514
Merge branch 'main' into pgstar_inlist_arrays
May 28, 2024
beb0019
[ci skip] arrayify pgbinary controls
May 29, 2024
ba986c6
[ci skip] adapt evolve both stars test case
May 29, 2024
7dc3906
[ci skip] small typos in pgstar.defaults
May 29, 2024
be27776
[ci skip] adapt other binary test cases
May 29, 2024
304c123
sed'ed the whole test suite for pgstar arrays, it's likely I missed s…
May 29, 2024
c05d715
more sed'ing, hopefully this at least makes the test suite pass
May 30, 2024
31c9408
[ci skip] changelog.rst entry; need help constructing sed examples
May 30, 2024
5a3aee3
[ci optional] full test
evbauer May 30, 2024
bb17371
first commit. pr-related documentation
pmocz May 30, 2024
99e9353
more documentation
pmocz May 30, 2024
c70dcdd
merge with main (needed merge instead of rebase due to some complicat…
pmocz Aug 25, 2024
4e5d87d
sed linting
pmocz Aug 25, 2024
e8e72bf
more seds
pmocz Aug 25, 2024
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
8 changes: 4 additions & 4 deletions astero/private/pgstar_astero_plots.f90
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ subroutine astero_pgstar_plots_info(id, ierr)
end subroutine astero_pgstar_plots_info


subroutine echelle_plot(id, device_id, ierr)
integer, intent(in) :: id, device_id
subroutine echelle_plot(id, device_id, array_ix, ierr)
integer, intent(in) :: id, device_id, array_ix
integer, intent(out) :: ierr

type (star_info), pointer :: s
Expand Down Expand Up @@ -363,8 +363,8 @@ end subroutine show_model
end subroutine do_echelle_plot


subroutine ratios_plot(id, device_id, ierr)
integer, intent(in) :: id, device_id
subroutine ratios_plot(id, device_id, array_ix, ierr)
integer, intent(in) :: id, device_id, array_ix
integer, intent(out) :: ierr

type (star_info), pointer :: s
Expand Down
Loading
Loading