Skip to content

Commit

Permalink
updated version and docs for v3.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljprice committed Jan 21, 2022
1 parent 6eaf95c commit 42c0b14
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
12 changes: 6 additions & 6 deletions docs/advanced.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ file as follows:

::

dprice/dustfrag> ssplash omuk162
dprice/dustfrag> splash omuk162

after which we get output along the lines of:

Expand Down Expand Up @@ -379,12 +379,12 @@ the following:
../mbossbod_f7.5/mbos268
...

Then invoke splash (ssplash for sphNG) with these filenames on the
Then invoke splash with these filenames on the
command line:

::

ssplash `cat filelistplot`
splash `cat filelistplot`

after which the first dump file should be read, indicated by output
along the lines of:
Expand Down Expand Up @@ -557,11 +557,11 @@ Surface rendering
Here I will give an example of how to use the 3D surface rendering
feature starting with a dump file kindly supplied by Giuseppe Lodato
from an SPH simulation of a warped accretion disc. First we read the
file (in sphNG format, so we use ssplash):
file:

::

dprice$ ssplash warp001
dprice$ splash warp001

after which we reach the main menu:

Expand Down Expand Up @@ -778,7 +778,7 @@ splash again with multiple files:

::

ssplash warp???
splash warp???

then plotting the same plot as previously to a non-interactive device
will cycle through all dump files producing a sequence of plots with
Expand Down
6 changes: 3 additions & 3 deletions docs/basic.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ file(s) on the command line, e.g.

splash myrun*.dat

| where splash should be replaced with `ssplash`, `gsplash` etc.
| where splash should be replaced with `splash -f gadget`, `splash -f magma` etc.
depending on the data format.
| After a successful data read, the menu should appear as something like
the following (the example given is for a “minidump” from Stephan
Rosswog’s SPH code):
Rosswog’s SPH code, MAGMA):
::

dprice$ rsplash minidump.00001
dprice$ splash -magma minidump.00001

::

Expand Down
9 changes: 5 additions & 4 deletions src/splash.f90
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ program splash
!---------------------------------------------------------------------------------
!
! SPLASH - a plotting utility for SPH data in 1, 2 and 3 dimensions
! Copyright (C) 2005-2021 Daniel Price
! Copyright (C) 2005-2022 Daniel Price
! [email protected]
!
! --------------------------------------------------------------------------
Expand All @@ -51,10 +51,11 @@ program splash
!
! -------------------------------------------------------------------------
! Version history/ Changelog:
! 3.3.4 : (xx/12/21)
! 3.3.4 : (21/01/22)
! improved visual appearance of normalised renderings with free boundaries;
! automatically read planet-wake parameters from phantom file headers;
! added --wake=1,3 flag to plot wake from sink particle 3 around star 1
! added --wake=1,3 flag to plot wake from sink particle 3 around star 1;
! bug fix with disappearing sinks in phantom MPI dumps; fixed seg fault in fits reader
! 3.3.3 : (19/11/21)
! "splash to csv" exports to comma separated variable (.csv) format;
! automatically apply -ev flag for filenames ending in .ev, .mdot or .out;
Expand Down Expand Up @@ -514,7 +515,7 @@ program splash
logical :: ihavereadfilenames,evsplash,doconvert,useall,iexist,use_360,got_format,do_multiplot
character(len=120) :: string
character(len=12) :: convertformat
character(len=*), parameter :: version = 'v3.3.4 [6th Dec 2021]'
character(len=*), parameter :: version = 'v3.3.4 [21st Jan 2022]'

!
! initialise some basic code variables
Expand Down

0 comments on commit 42c0b14

Please sign in to comment.