Skip to content

Commit 125200c

Browse files
committed
updated version
1 parent 46a4bf3 commit 125200c

File tree

3 files changed

+39
-6
lines changed

3 files changed

+39
-6
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
# -- Project information -----------------------------------------------------
1919

2020
project = 'splash'
21-
copyright = '2004-2023 Daniel Price and contributors'
21+
copyright = '2004-2024 Daniel Price and contributors'
2222
author = 'Daniel Price'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = 'v3.10.1'
25+
release = 'v3.10.2'
2626

2727
# -- General configuration ---------------------------------------------------
2828

docs/version_history.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,32 @@
11

2+
**3.10.2: (01/03/24)**
3+
4+
- reads phantom dumps with adaptive particle refinement
5+
- improved splash to phantom conversion
6+
- better documentation of splash calc lightcurve (thanks to Chunliang Mu)
7+
- saving dust density limits now applies to all dust species
8+
9+
**3.10.1: (4/12/23)**
10+
11+
- bug fix with accreted particles appearing in smoothed particle plots
12+
- automated Trad/Tgas in extra quantities from phantom dumps with radiation
13+
14+
**3.10.0: (30/11/23)**
15+
16+
- --sort flag to sort filenames for comparison plots
17+
- --movie flag to automatically make movie from sequence of files
18+
- giza backend now supports direct output of mp4 movies
19+
20+
**3.9.0: (06/11/23)**
21+
22+
- follow-the-label column choice, where if a label is selected for plotting from the first file, it will automagically shift to find the matching label in subsequent files, even if the column containing the quantity has changed
23+
- implemented vtk reader capable of reading snapshots from Shamrock code
24+
- apply transparency to smoothed particle plot only if adaptive smoothing used
25+
- plot colour bar by default when particle colouring by quantity is used
26+
- can read velocity array from fits header for position-position-velocity cubes
27+
- bug fix with first page being white with smoothed particle plots on black background
28+
- bug fix finding .comp file if underscore in the directory name
29+
230
**3.8.5: (23/10/23)**
331

432
- implemented smoothed particle plots with multiple steps per page

src/splash.f90

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
! a) You must cause the modified files to carry prominent notices
1616
! stating that you changed the files and the date of any change.
1717
!
18-
! Copyright (C) 2005-2023 Daniel Price. All rights reserved.
18+
! Copyright (C) 2005-2024 Daniel Price. All rights reserved.
1919
! Contact: daniel.price@monash.edu
2020
!
2121
! The plotting API for SPLASH 2.0 was written by James Wetter
@@ -30,7 +30,7 @@ program splash
3030
!---------------------------------------------------------------------------------
3131
!
3232
! SPLASH - a plotting utility for SPH data in 1, 2 and 3 dimensions
33-
! Copyright (C) 2005-2023 Daniel Price
33+
! Copyright (C) 2005-2024 Daniel Price
3434
! daniel.price@monash.edu
3535
!
3636
! --------------------------------------------------------------------------
@@ -51,6 +51,11 @@ program splash
5151
!
5252
! -------------------------------------------------------------------------
5353
! Version history/ Changelog:
54+
! 3.10.2 : (01/03/24)
55+
! reads phantom dumps with adaptive particle refinement;
56+
! improved splash to phantom conversion;
57+
! better documentation of splash calc lightcurve (thanks to Chunliang Mu);
58+
! saving dust density limits now applies to all dust species;
5459
! 3.10.1 : (4/12/23)
5560
! bug fix with accreted particles appearing in smoothed particle plots;
5661
! automated Trad/Tgas in extra quantities from phantom dumps with radiation
@@ -600,7 +605,7 @@ program splash
600605
character(len=120) :: string,exactfile
601606
character(len=12) :: convertformat
602607
character(len=lenlabel) :: stringx,stringy,stringr,stringc,stringv
603-
character(len=*), parameter :: version = 'v3.10.1 [4th Dec 2023]'
608+
character(len=*), parameter :: version = 'v3.10.2 [1st Mar 2024]'
604609

605610
!
606611
! initialise some basic code variables
@@ -1144,7 +1149,7 @@ subroutine print_header
11441149
20 format(/, &
11451150
' ( B | y ) ( D | a | n | i | e | l ) ( P | r | i | c | e )',/)
11461151

1147-
print "(a)",' ( '//trim(version)//' Copyright (C) 2005-2023 )'
1152+
print "(a)",' ( '//trim(version)//' Copyright (C) 2005-2024 )'
11481153
print 30
11491154
30 format(/, &
11501155
' * SPLASH comes with ABSOLUTELY NO WARRANTY. This is ',/, &

0 commit comments

Comments
 (0)