<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/morpheushydro/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/morpheushydro/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Wed, 20 Aug 2014 20:18:18 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/morpheushydro/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Neil Vaytet</title><link>https://sourceforge.net/p/morpheushydro/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -1,190 +1,159 @@
-##############################################################################################
+MORPHEUS
+========
+
+Manchester Omni-geometRical Program for Hydrodynamical EUlerian Simulations
+N. Vaytet &amp;amp; T. O'Brien
+The University of Manchester
+Version 1.33 - 08/2014

-       _/    _/    _/_/    _/_/_/    _/_/_/    _/    _/  _/_/_/_/  _/    _/    _/_/_/
-       _/_/_/_/  _/    _/  _/    _/  _/    _/  _/    _/  _/        _/    _/  _/
-       _/ _/ _/  _/    _/  _/_/_/    _/_/_/    _/_/_/_/  _/_/_/    _/    _/    _/_/
-       _/    _/  _/    _/  _/    _/  _/        _/    _/  _/        _/    _/        _/
-       _/    _/    _/_/    _/    _/  _/        _/    _/  _/_/_/_/    _/_/    _/_/_/
-  
-        Manchester Omni-geometRical Program for Hydrodynamical EUlerian Simulations
-                            Copyright (C) N. Vaytet &amp;amp; T. O'Brien
-                                The University of Manchester
-                                    Version 1.5 - 09/2013
+---
+
+3D MPI-OPENMP Eulerian second-order Godunov hydrodynamic simulation code in cartesian, spherical and cylindrical coordinates.
+
+Neil Vaytet &amp;amp; Tim O'Brien (2008-2013).
+
+---
+
+User guide:
+
+There are currently 11 examples of use of the code in the 'test' directory:
+- a 1D Sod test                                                            (cartesian)
+- a 1D interacting blastwaves test                                         (cartesian)
+- a 1D Sedov blastwave                                                     (spherical)
+- a 1D Primakoff blastwave                                                 (spherical)
+- a 2D Sedov blastwave inside a rectangular medium with reflecting walls   (cartesian)
+- a 2D Sedov spherical blastwave                                           (spherical)
+- a 3D Sedov spherical blastwave                                           (cylindrical)
+- a 2D hydrodynamical implosion                                            (cartesian)
+- a 2D hydrodynamical explosion                                            (cartesian)
+- a 2D Kelvin-Helmholtz instability with periodic boundaries               (cartesian)
+- a 2D Rayleigh-Taylor instability                                         (cartesian)

-##############################################################################################
+These examples are all run in the test suite script which can be found in the 'bin' directory. You can run the full test suite by simply typing './run_test_suite.sh'. See the beginning of the script for further option (using MPI, etc...)

-----------------------------------------------------------------------------------------------
- 3D MPI-OPENMP Eulerian second-order Godunov hydrodynamic simulation code in cartesian, 
- spherical and cylindrical coordinates.
-
- Neil Vaytet &amp;amp; Tim O'Brien (2008-2013).
-----------------------------------------------------------------------------------------------
-
- User guide:
-
-   - There are currently 10 examples of use of the code in the 'test' directory:
-      - a 1D Sod test                                                            (cartesian)
-      - a 1D interacting blastwaves test                                         (cartesian)
-      - a 1D Primakoff blastwave                                                 (spherical)
-      - a 2D Sedov blastwave inside a rectangular medium with reflecting walls   (cartesian)
-      - a 2D Sedov spherical blastwave                                           (spherical)
-      - a 3D Sedov spherical blastwave                                           (cylindrical)
-      - a 2D hydrodynamical implosion                                            (cartesian)
-      - a 2D hydrodynamical explosion                                            (cartesian)
-      - a 2D Kelvin-Helmholtz instability with periodic boundaries               (cartesian)
-      - a 2D Rayleigh-Taylor instability                                         (cartesian)
+     
+There are 15 files in the 'src' directory common to all runs:
+- morpheus.f90          : main program controlling initial setup and computational loop
+- allocate_arrays.f90   : (de)allocates the memory for the variables arrays
+- hydro.f90             : contains all the hydro routines (comp, flux,...)
+- data_output.f90       : contains all the routines for dumping data cubes
+- grid.f90              : contains the grid setup
+- boundaries.f90        : updates the boundary conditions
+- gravity.f90           : calculates the gravity potential
+- modules.f90           : contains all global variables
+- mpi.f90               : contains mpi domain decomposition &amp;amp; communications
+- radiative_cooling.f90 : calculates radiative cooling
+- timestep.f90          : computes the timestep
+- initialisation.f90    : contains physical constants and units and default parameters
+- solvers.f90           : contains the different Riemann solvers
+- terminal_output.f90   : outputs information to terminal
+- tools.f90             : contains useful routines and functions

-   - These examples are all run in the test suite script which can be found in the 'bin'
-     directory. You can run the full test suite by simply typing './run_test_suite.sh'.
-     See the beginning of the script for further option (using MPI, etc...)
-
-     
-   - There are 15 files in the 'src' directory common to all runs:
-      - morpheus.f90          : main program controlling initial setup and computational loop
-      - allocate_arrays.f90   : (de)allocates the memory for the variables arrays
-      - hydro.f90             : contains all the hydro routines (comp, flux,...)
-      - data_output.f90       : contains all the routines for dumping data cubes
-      - grid.f90              : contains the grid setup
-      - boundaries.f90        : updates the boundary conditions
-      - gravity.f90           : calculates the gravity potential
-      - modules.f90           : contains all global variables
-      - mpi.f90               : contains mpi domain decomposition &amp;amp; communications
-      - radiative_cooling.f90 : calculates radiative cooling
-      - timestep.f90          : computes the timestep
-      - initialisation.f90    : contains physical constants and units and default parameters
-      - solvers.f90           : contains the different Riemann solvers
-      - terminal_output.f90   : outputs information to terminal
-      - tools.f90             : contains useful routines and functions
-
-   - The 'test' directory contains the files specific to each different simulation.
-     In each subdirectory there are three files:
-      - setup.f90 : contains the routine to setup the initial conditions, the routine defining
-        the units and physical constants and the allocation of data arrays
-      - list.nml : contains all the simulation parameters which is read in as a namelist
-      - extras.f90: contains all the additional routines specific to each problem (by default
-        they are empty)
+The 'test' directory contains the files specific to each different simulation. In each subdirectory there are three files:
+- setup.f90 : contains the routine to setup the initial conditions, the routine defining the units and physical constants and the allocation of data arrays
+- list.nml : contains all the simulation parameters which is read in as a namelist
+- extras.f90: contains all the additional routines specific to each problem (by default they are empty)

- Compilation: use the Makefile in 'bin' directory
+Compilation: use the Makefile in 'bin' directory

-   - Choose to use MPI or OPENMP (or both) by setting the variables MPI and OPENMP to 0 or 1
-   - Set the correct problem path for the variable PROBLEM at line 28
-   - Choose the correct compiler for the variable F90 (line 37/39)
-   - Simply type 'make'
+- Choose to use MPI or OPENMP (or both) by setting the variables MPI and OPENMP to 0 or 1
+- Set the correct problem path for the variable PROBLEM at line 28
+- Choose the correct compiler for the variable F90 (line 37/39)
+- Simply type 'make'

- Description of namelist variables is given in the list.nml file.
+Description of namelist variables is given in the list.nml file.

- Boundary conditions:
-   - bc(1) = left   (lower x) boundary condition
-   - bc(2) = right  (upper x) boundary condition
-   - bc(3) = bottom (lower y) boundary condition
-   - bc(4) = top    (upper y) boundary condition
-   - bc(5) = front  (lower z) boundary condition
-   - bc(6) = back   (upper z) boundary condition
-   - set to 1 for FREE-FLOW
-   - set to 2 for REFLECTIVE
-   - set to 3 for PERIODIC
-   - set to 4 for USER-SET INFLOW
+Boundary conditions:
+- bc(1) = left   (lower x) boundary condition
+- bc(2) = right  (upper x) boundary condition
+- bc(3) = bottom (lower y) boundary condition
+- bc(4) = top    (upper y) boundary condition
+- bc(5) = front  (lower z) boundary condition
+- bc(6) = back   (upper z) boundary condition
+- set to 1 for FREE-FLOW
+- set to 2 for REFLECTIVE
+- set to 3 for PERIODIC
+- set to 4 for USER-SET INFLOW

- Grid geometry:
-   - 1 = cartesian
-   - 2 = spherical
-   - 3 = cylindrical
+Grid geometry:
+- 1 = cartesian
+- 2 = spherical
+- 3 = cylindrical

- In the case of spherical and cylindrical geometries, the size of the grid for the 2nd
- dimensions (2nd and 3rd in the spherical case) are set using negative multiples of pi.
- For example to have a spherical grid of size R = 1.0, theta = pi, phi = 2*pi, set in
- the namelist
-   - lbox(1) =  1.0e0
-   - lbox(2) = -1.0e0
-   - lbox(3) = -2.0e0 
+In the case of spherical and cylindrical geometries, the size of the grid for the 2nd dimensions (2nd and 3rd in the spherical case) are set using negative multiples of pi. For example to have a spherical grid of size R = 1.0, theta = pi, phi = 2*pi, set in the namelist
+- lbox(1) =  1.0e0
+- lbox(2) = -1.0e0
+- lbox(3) = -2.0e0 

- The code is run from the directory where the 'list.nml' file is located and data outputs are
- written in the same directory.
+The code is run from the directory where the 'list.nml' file is located and data outputs are written in the same directory.

-----------------------------------------------------------------------------------------------
+---

- To create a new simulation:
+To create a new simulation:

- Create a new folder in the 'exe' directory.
- Copy the setup.f90, list.nml and extras.f90 files from a test run into the new folder.
+Create a new folder in the 'exe' directory.
+Copy the setup.f90, list.nml and extras.f90 files from a test run into the new folder.

- Edit your quantities (size of grid lbox, initial density d1, velocity u1, pressure p1,
- etc...) in the namelist list.nml.
+Edit your quantities (size of grid lbox, initial density d1, velocity u1, pressure p1, etc...) in the namelist list.nml.

+Edit the setup.f90:

- Edit the setup.f90:
+- Define the centre of the grid using the variables cen1, cen2 and cen3 by giving them a real value between 0 and 1.
+- Define the inital state of the gas inside the grid: the array un(1:5,i,j,k) contains the conservative variables:
+    - unew(1) is the gas density
+    - unew(2) is the gas momentum in the x direction (ρ * u&lt;sub&gt;x&lt;/sub&gt;)
+    - unew(3) is the gas momentum in the y direction (ρ * u&lt;sub&gt;y&lt;/sub&gt;)
+    - unew(4) is the gas momentum in the z direction (ρ * u&lt;sub&gt;z&lt;/sub&gt;)
+    - unew(5) is the gas total energy (E = 0.5*(ρ u&lt;sup&gt;2&lt;/sup&gt;) + P/(g-1))
+- Add in any extra functions you need in the extras.f90 file: the 'extras_init' subroutine is called once at the start of the simulation, the 'extras' subroutine is call at every timestep before the computational step and the 'extras_end' subroutine is called once at the end of the run.

-   - Define the centre of the grid using the variables cen1, cen2 and cen3 by giving them a
-     real value between 0 and 1.
+---

-   - Define the inital state of the gas inside the grid: the array un(5,i,j,k) contains the
-     conservative variables:
-                unew(1) is the gas density
-                unew(2) is the gas momentum in the x direction (rho * ux)
-                unew(3) is the gas momentum in the y direction (rho * uy)
-                unew(4) is the gas momentum in the z direction (rho * uz)
-                unew(5) is the gas total energy (E = 0.5*(rho u*u) + P/(g-1))
+Data visualisation:
+ 
+Fortran:

-   - Add in any extra functions you need in the extras.f90 file: the 'extras_init' subroutine
-     is called once at the start of the simulation, the 'extras' subroutine is call at every
-     timestep before the computational step and the 'extras_end' subroutine is called once at
-     the end of the run.
+- Use the 'visualize' program located in the 'vis/fortran' directory.
+- Compile with 'make'
+- Run executable from the 'exe/PROBLEM/' directory containing the simulation outputs with arguments: '../../vis/fortran/visualize filenameroot istart iend incr' where filenameroot is the basename of the output files ('morpheus' by default), and istart iend incr are the outputs starting and ending number and increment. For example, to read every other output from 0 to 10, use '../../vis/fortran/write_ppm_vtk morpheus 0 10 2'
+   
+Python:
+ 
+- There is a python utility to read morpheus binary outputs in the vis/python directory.
+- There is also an example plotting script in the 'exe/sedovxyz' directory.
+- Either set your PYTHONPATH to 'path_to_morpheus/vis/python' or create symbolic links to the files 'vis/python/rd_morpheus.py' and 'vis/python/fortranfile.py'
+- Run the script 'python plot_morpheus_data.py'
+   
+Gnuplot:

-----------------------------------------------------------------------------------------------
+- There are example gnuplot scripts in all the test run directories.
+- They require the use of the fortran visualize program to create text files readable by gnuplot.

- Data visualisation:
- 
- Fortran:
+---

-   - Use the 'visualize' program located in the 'vis/fortran' directory.
-   - Compile with 'make'
-   - Run executable from the 'exe/PROBLEM/' directory containing the simulation outputs with
-     arguments: '../../vis/fortran/visualize filenameroot istart iend incr' where filenameroot
-     is the basename of the output files ('morpheus' by default), and istart iend incr are the
-     outputs starting and ending number and increment. For example, to read every other output
-     from 0 to 10, use '../../vis/fortran/write_ppm_vtk morpheus 0 10 2'
-   
- Python:
- 
-   - There is a python utility to read morpheus binary outputs in the vis/python directory.
-   - There is also an example plotting script in the 'exe/sedovxyz' directory.
-   - Either set your PYTHONPATH to 'path_to_morpheus/vis/python' or create symbolic links to
-     the files 'vis/python/rd_morpheus.py' and 'vis/python/fortranfile.py'
-   - Run the script 'python plot_morpheus_data.py'
-   
- Gnuplot:
+Create movie:

-   - There are example gnuplot scripts in all the test run directories.
-   - They require the use of the fortran visualize program to create text files readable by
-     gnuplot.
+- Create ppm images from the outputs using the 'visualize' program.

-----------------------------------------------------------------------------------------------
+- Convert ppm files to png (using imagemagick):
+  for f in *.ppm; do echo $f; convert $f ${f/ppm/png}; done;

- Create movie:
+- Create movie using mencoder:
+  mencoder mf://*.png -mf w=512:h=768:fps=25:type=png -ovc copy -o output.avi -nosound

-   - Create ppm images from the outputs using the 'visualize' program.
+---

-   - Convert ppm files to png (using imagemagick):
-      for f in *.ppm; do echo $f; convert $f ${f/ppm/png}; done;
+Further detailed DOXYGEN documentation is available in html format by running 'doxygen' in the doc directory.

-   - Create movie using mencoder:
-      mencoder mf://*.png -mf w=512:h=768:fps=25:type=png -ovc copy -o output.avi -nosound
-
-----------------------------------------------------------------------------------------------
-
- Further detailed DOXYGEN documentation is available in html format by running 'doxygen' in
- the doc directory.
-
-##############################################################################################
-
+---

 [[members limit=20]]
 [[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Neil Vaytet</dc:creator><pubDate>Wed, 20 Aug 2014 20:18:18 -0000</pubDate><guid>https://sourceforge.netd528d2ae2817af58c4f12949eb95c620f2c04483</guid></item><item><title>Home modified by Neil Vaytet</title><link>https://sourceforge.net/p/morpheushydro/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -19,7 +19,7 @@
  3D MPI-OPENMP Eulerian second-order Godunov hydrodynamic simulation code in cartesian, 
  spherical and cylindrical coordinates.

- Copyright: Neil Vaytet &amp;amp; Tim O'Brien (2008-2013).
+ Neil Vaytet &amp;amp; Tim O'Brien (2008-2013).
 ----------------------------------------------------------------------------------------------

  User guide:
@@ -36,11 +36,11 @@
       - a 2D Kelvin-Helmholtz instability with periodic boundaries               (cartesian)
       - a 2D Rayleigh-Taylor instability                                         (cartesian)

-     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
    - These examples are all run in the test suite script which can be found in the 'bin'
      directory. You can run the full test suite by simply typing './run_test_suite.sh'.
      See the beginning of the script for further option (using MPI, etc...)
-     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+

    - There are 15 files in the 'src' directory common to all runs:
       - morpheus.f90          : main program controlling initial setup and computational loop
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Neil Vaytet</dc:creator><pubDate>Wed, 20 Aug 2014 18:49:11 -0000</pubDate><guid>https://sourceforge.net652e98be30d45ac5696f338092755a039bd6a8f5</guid></item><item><title>Home modified by Neil Vaytet</title><link>https://sourceforge.net/p/morpheushydro/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,8 +1,190 @@
-Welcome to your wiki!
+##############################################################################################

-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].

-The wiki uses [Markdown](/p/morpheushydro/wiki/markdown_syntax/) syntax.
+       _/    _/    _/_/    _/_/_/    _/_/_/    _/    _/  _/_/_/_/  _/    _/    _/_/_/
+       _/_/_/_/  _/    _/  _/    _/  _/    _/  _/    _/  _/        _/    _/  _/
+       _/ _/ _/  _/    _/  _/_/_/    _/_/_/    _/_/_/_/  _/_/_/    _/    _/    _/_/
+       _/    _/  _/    _/  _/    _/  _/        _/    _/  _/        _/    _/        _/
+       _/    _/    _/_/    _/    _/  _/        _/    _/  _/_/_/_/    _/_/    _/_/_/
+  
+        Manchester Omni-geometRical Program for Hydrodynamical EUlerian Simulations
+                            Copyright (C) N. Vaytet &amp;amp; T. O'Brien
+                                The University of Manchester
+                                    Version 1.5 - 09/2013
+
+
+##############################################################################################
+
+----------------------------------------------------------------------------------------------
+ 3D MPI-OPENMP Eulerian second-order Godunov hydrodynamic simulation code in cartesian, 
+ spherical and cylindrical coordinates.
+
+ Copyright: Neil Vaytet &amp;amp; Tim O'Brien (2008-2013).
+----------------------------------------------------------------------------------------------
+
+ User guide:
+
+   - There are currently 10 examples of use of the code in the 'test' directory:
+      - a 1D Sod test                                                            (cartesian)
+      - a 1D interacting blastwaves test                                         (cartesian)
+      - a 1D Primakoff blastwave                                                 (spherical)
+      - a 2D Sedov blastwave inside a rectangular medium with reflecting walls   (cartesian)
+      - a 2D Sedov spherical blastwave                                           (spherical)
+      - a 3D Sedov spherical blastwave                                           (cylindrical)
+      - a 2D hydrodynamical implosion                                            (cartesian)
+      - a 2D hydrodynamical explosion                                            (cartesian)
+      - a 2D Kelvin-Helmholtz instability with periodic boundaries               (cartesian)
+      - a 2D Rayleigh-Taylor instability                                         (cartesian)
+
+     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+   - These examples are all run in the test suite script which can be found in the 'bin'
+     directory. You can run the full test suite by simply typing './run_test_suite.sh'.
+     See the beginning of the script for further option (using MPI, etc...)
+     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+     
+   - There are 15 files in the 'src' directory common to all runs:
+      - morpheus.f90          : main program controlling initial setup and computational loop
+      - allocate_arrays.f90   : (de)allocates the memory for the variables arrays
+      - hydro.f90             : contains all the hydro routines (comp, flux,...)
+      - data_output.f90       : contains all the routines for dumping data cubes
+      - grid.f90              : contains the grid setup
+      - boundaries.f90        : updates the boundary conditions
+      - gravity.f90           : calculates the gravity potential
+      - modules.f90           : contains all global variables
+      - mpi.f90               : contains mpi domain decomposition &amp;amp; communications
+      - radiative_cooling.f90 : calculates radiative cooling
+      - timestep.f90          : computes the timestep
+      - initialisation.f90    : contains physical constants and units and default parameters
+      - solvers.f90           : contains the different Riemann solvers
+      - terminal_output.f90   : outputs information to terminal
+      - tools.f90             : contains useful routines and functions
+
+   - The 'test' directory contains the files specific to each different simulation.
+     In each subdirectory there are three files:
+      - setup.f90 : contains the routine to setup the initial conditions, the routine defining
+        the units and physical constants and the allocation of data arrays
+      - list.nml : contains all the simulation parameters which is read in as a namelist
+      - extras.f90: contains all the additional routines specific to each problem (by default
+        they are empty)
+
+
+ Compilation: use the Makefile in 'bin' directory
+
+   - Choose to use MPI or OPENMP (or both) by setting the variables MPI and OPENMP to 0 or 1
+   - Set the correct problem path for the variable PROBLEM at line 28
+   - Choose the correct compiler for the variable F90 (line 37/39)
+   - Simply type 'make'
+
+
+ Description of namelist variables is given in the list.nml file.
+
+
+ Boundary conditions:
+   - bc(1) = left   (lower x) boundary condition
+   - bc(2) = right  (upper x) boundary condition
+   - bc(3) = bottom (lower y) boundary condition
+   - bc(4) = top    (upper y) boundary condition
+   - bc(5) = front  (lower z) boundary condition
+   - bc(6) = back   (upper z) boundary condition
+   - set to 1 for FREE-FLOW
+   - set to 2 for REFLECTIVE
+   - set to 3 for PERIODIC
+   - set to 4 for USER-SET INFLOW
+
+
+ Grid geometry:
+   - 1 = cartesian
+   - 2 = spherical
+   - 3 = cylindrical
+   
+ In the case of spherical and cylindrical geometries, the size of the grid for the 2nd
+ dimensions (2nd and 3rd in the spherical case) are set using negative multiples of pi.
+ For example to have a spherical grid of size R = 1.0, theta = pi, phi = 2*pi, set in
+ the namelist
+   - lbox(1) =  1.0e0
+   - lbox(2) = -1.0e0
+   - lbox(3) = -2.0e0 
+
+
+ The code is run from the directory where the 'list.nml' file is located and data outputs are
+ written in the same directory.
+
+----------------------------------------------------------------------------------------------
+
+ To create a new simulation:
+
+ Create a new folder in the 'exe' directory.
+ Copy the setup.f90, list.nml and extras.f90 files from a test run into the new folder.
+
+ Edit your quantities (size of grid lbox, initial density d1, velocity u1, pressure p1,
+ etc...) in the namelist list.nml.
+
+
+ Edit the setup.f90:
+
+   - Define the centre of the grid using the variables cen1, cen2 and cen3 by giving them a
+     real value between 0 and 1.
+
+   - Define the inital state of the gas inside the grid: the array un(5,i,j,k) contains the
+     conservative variables:
+                unew(1) is the gas density
+                unew(2) is the gas momentum in the x direction (rho * ux)
+                unew(3) is the gas momentum in the y direction (rho * uy)
+                unew(4) is the gas momentum in the z direction (rho * uz)
+                unew(5) is the gas total energy (E = 0.5*(rho u*u) + P/(g-1))
+
+   - Add in any extra functions you need in the extras.f90 file: the 'extras_init' subroutine
+     is called once at the start of the simulation, the 'extras' subroutine is call at every
+     timestep before the computational step and the 'extras_end' subroutine is called once at
+     the end of the run.
+
+----------------------------------------------------------------------------------------------
+
+ Data visualisation:
+ 
+ Fortran:
+
+   - Use the 'visualize' program located in the 'vis/fortran' directory.
+   - Compile with 'make'
+   - Run executable from the 'exe/PROBLEM/' directory containing the simulation outputs with
+     arguments: '../../vis/fortran/visualize filenameroot istart iend incr' where filenameroot
+     is the basename of the output files ('morpheus' by default), and istart iend incr are the
+     outputs starting and ending number and increment. For example, to read every other output
+     from 0 to 10, use '../../vis/fortran/write_ppm_vtk morpheus 0 10 2'
+   
+ Python:
+ 
+   - There is a python utility to read morpheus binary outputs in the vis/python directory.
+   - There is also an example plotting script in the 'exe/sedovxyz' directory.
+   - Either set your PYTHONPATH to 'path_to_morpheus/vis/python' or create symbolic links to
+     the files 'vis/python/rd_morpheus.py' and 'vis/python/fortranfile.py'
+   - Run the script 'python plot_morpheus_data.py'
+   
+ Gnuplot:
+
+   - There are example gnuplot scripts in all the test run directories.
+   - They require the use of the fortran visualize program to create text files readable by
+     gnuplot.
+
+----------------------------------------------------------------------------------------------
+
+ Create movie:
+
+   - Create ppm images from the outputs using the 'visualize' program.
+
+   - Convert ppm files to png (using imagemagick):
+      for f in *.ppm; do echo $f; convert $f ${f/ppm/png}; done;
+
+   - Create movie using mencoder:
+      mencoder mf://*.png -mf w=512:h=768:fps=25:type=png -ovc copy -o output.avi -nosound
+
+----------------------------------------------------------------------------------------------
+
+ Further detailed DOXYGEN documentation is available in html format by running 'doxygen' in
+ the doc directory.
+
+##############################################################################################
+

 [[members limit=20]]
 [[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Neil Vaytet</dc:creator><pubDate>Wed, 20 Aug 2014 18:47:07 -0000</pubDate><guid>https://sourceforge.net45b8b734f84a73cb041265d02a1b98baa2cc7837</guid></item><item><title>Home modified by Neil Vaytet</title><link>https://sourceforge.net/p/morpheushydro/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/morpheushydro/wiki/markdown_syntax/"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
&lt;ul class="md-users-list"&gt;
&lt;li&gt;&lt;a href="/u/nvaytet/"&gt;Neil Vaytet&lt;/a&gt; (admin)&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;span class="download-button-5210c430f1fd8d1a89efd85f" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Neil Vaytet</dc:creator><pubDate>Sun, 18 Aug 2013 12:55:12 -0000</pubDate><guid>https://sourceforge.net8f626c8fbe4b888f1df3ce90db4bf7f736c565f4</guid></item></channel></rss>