[pysph] 01/07: Merge tag 'upstream/0_20160122.git1fe4786'
Anton Gladky
gladk at moszumanska.debian.org
Tue Feb 9 17:39:46 UTC 2016
This is an automated email from the git hooks/post-receive script.
gladk pushed a commit to branch master
in repository pysph.
commit 8696a4ae60724e7cc90d29d2ac2f9af1c9ad4665
Merge: 571d277 725acf5
Author: Anton Gladky <gladk at debian.org>
Date: Tue Feb 9 14:30:50 2016 +0100
Merge tag 'upstream/0_20160122.git1fe4786'
Upstream version 0~20160122.git1fe4786
.gitignore | 1 +
CHANGES.rst | 92 ++
MANIFEST.in | 6 +-
README.rst | 51 +-
appveyor-run-env.cmd | 6 -
appveyor.yml | 23 +-
docs/source/design/overview.rst | 18 +-
docs/source/installation.rst | 197 +++--
docs/source/overview.rst | 13 +
docs/source/reference/solver.rst | 5 +
docs/source/tutorial/circular_patch.rst | 357 +++++---
docs/source/using_pysph.rst | 2 +-
examples/README.rst | 12 +
examples/SPHERIC/moving_square.py | 312 -------
examples/SPHysics/dambreak_sphysics.py | 92 --
examples/dam_break.py | 175 ----
examples/dam_break3D.py | 157 ----
examples/elliptical_drop.py | 176 ----
examples/gas_dynamics/noh.py | 157 ----
examples/gas_dynamics/sedov.py | 142 ----
examples/gas_dynamics/shocktube.py | 210 -----
examples/gas_dynamics/shocktube1d.py | 215 -----
examples/hydrostatic_tank.py | 309 -------
examples/performance/cube.py | 112 ---
examples/rigid_body/dam_break3D_sph.py | 140 ----
examples/rigid_body/rigid_block_in_tank.py | 195 -----
examples/rigid_body/rigid_collision.py | 98 ---
examples/rigid_body/simple_rigid_body.py | 73 --
examples/solid_mech/rings.py | 192 -----
examples/solid_mech/taylor_bar.py | 204 -----
examples/surface_tension/circular_droplet.py | 267 ------
examples/surface_tension/khi_sy11.py | 270 ------
examples/surface_tension/khi_tvf.py | 296 -------
examples/surface_tension/square_droplet.py | 400 ---------
examples/transport_velocity/cavity.py | 201 -----
examples/transport_velocity/channel_results.py | 91 --
examples/transport_velocity/couette.py | 210 -----
examples/transport_velocity/lattice_cylinders.py | 205 -----
examples/transport_velocity/ldcavity_results.py | 94 ---
examples/transport_velocity/periodic_cylinders.py | 210 -----
examples/transport_velocity/poiseuille.py | 209 -----
examples/transport_velocity/rayleigh_taylor.py | 233 ------
examples/transport_velocity/taylor_green.py | 148 ----
examples/transport_velocity/taylor_green_stats.py | 49 --
examples/trivial_inlet_outlet.py | 122 ---
pysph/__init__.py | 51 +-
pysph/base/capture_stream.py | 84 ++
pysph/base/ext_module.py | 128 ++-
pysph/base/linalg3.pxd | 10 +
pysph/base/linalg3.pyx | 538 ++++++++++++
pysph/base/particle_array.pyx | 17 +-
pysph/base/tests/particle_array_tests.py | 47 +-
pysph/base/tests/test_capture_stream.py | 73 ++
pysph/base/tests/test_ext_module.py | 63 ++
pysph/base/tests/test_linalg3.py | 159 ++++
pysph/base/utils.py | 151 ++--
pysph/examples/__init__.py | 0
.../examples/_db_geometry.py | 0
pysph/examples/cavity.py | 328 ++++++++
pysph/examples/couette.py | 262 ++++++
pysph/examples/cube.py | 113 +++
pysph/examples/dam_break_2d.py | 158 ++++
pysph/examples/dam_break_3d.py | 100 +++
pysph/examples/db_exp_data.py | 84 ++
pysph/examples/elliptical_drop.py | 265 ++++++
pysph/examples/gas_dynamics/__init__.py | 0
.../ndspmhd-sedov-initial-conditions.npz | Bin
pysph/examples/gas_dynamics/noh.py | 153 ++++
pysph/examples/gas_dynamics/sedov.py | 138 +++
pysph/examples/gas_dynamics/shocktube.py | 217 +++++
pysph/examples/gas_dynamics/shocktube1d.py | 221 +++++
pysph/examples/ghia_cavity_data.py | 75 ++
pysph/examples/hydrostatic_tank.py | 323 +++++++
pysph/examples/lattice_cylinders.py | 274 ++++++
pysph/examples/periodic_cylinders.py | 325 +++++++
pysph/examples/poiseuille.py | 304 +++++++
pysph/examples/rayleigh_taylor.py | 235 ++++++
{examples => pysph/examples}/rigid_body/README.rst | 0
pysph/examples/rigid_body/__init__.py | 0
pysph/examples/rigid_body/bouncing_cube.py | 91 ++
pysph/examples/rigid_body/bouncing_cubes.py | 118 +++
pysph/examples/rigid_body/dam_break3D_sph.py | 137 +++
pysph/examples/rigid_body/rigid_block_in_tank.py | 191 +++++
pysph/examples/rigid_body/simple.py | 65 ++
{examples => pysph/examples}/rigid_body/sph.vtk.gz | Bin
pysph/examples/run.py | 184 ++++
pysph/examples/solid_mech/__init__.py | 0
pysph/examples/solid_mech/rings.py | 188 +++++
pysph/examples/solid_mech/taylor_bar.py | 200 +++++
pysph/examples/spheric/__init__.py | 0
pysph/examples/spheric/moving_square.py | 321 +++++++
.../SPHysics => pysph/examples/sphysics}/INDAT.gz | Bin
.../SPHysics => pysph/examples/sphysics}/IPART.gz | Bin
pysph/examples/sphysics/__init__.py | 0
pysph/examples/sphysics/dambreak_sphysics.py | 106 +++
pysph/examples/surface_tension/__init__.py | 0
pysph/examples/surface_tension/circular_droplet.py | 261 ++++++
pysph/examples/surface_tension/khi_sy11.py | 270 ++++++
pysph/examples/surface_tension/khi_tvf.py | 290 +++++++
pysph/examples/surface_tension/square_droplet.py | 406 +++++++++
pysph/examples/taylor_green.py | 324 +++++++
pysph/examples/tests/__init__.py | 0
pysph/examples/tests/test_examples.py | 54 ++
pysph/examples/trivial_inlet_outlet.py | 135 +++
pysph/parallel/parallel_manager.pyx | 8 +-
pysph/parallel/tests/IPART.txt.gz | Bin 122599 -> 0 bytes
pysph/parallel/tests/cavity.py | 205 +----
pysph/parallel/tests/dambreak3D.py | 124 ---
pysph/parallel/tests/elliptical_drop.py | 135 +--
pysph/parallel/tests/example_test_case.py | 21 +-
pysph/parallel/tests/test_openmp.py | 15 +-
pysph/parallel/tests/test_parallel_run.py | 21 +-
pysph/solver/application.py | 932 +++++++++++++--------
pysph/solver/solver.py | 149 ++--
pysph/solver/tests/test_application.py | 72 ++
pysph/solver/tests/test_solver.py | 100 +++
pysph/solver/tests/test_solver_utils.py | 23 +
pysph/solver/tools.py | 85 ++
pysph/solver/utils.py | 227 ++---
pysph/sph/acceleration_eval_cython.mako | 2 +-
pysph/sph/basic_equations.py | 12 +-
pysph/sph/boundary_equations.py | 4 +-
pysph/sph/equation.py | 4 +-
pysph/sph/gas_dynamics/basic.py | 8 +-
pysph/sph/iisph.py | 20 +-
pysph/sph/integrator_step.py | 26 +-
pysph/sph/misc/advection.py | 2 +-
pysph/sph/rigid_body.py | 300 ++++---
pysph/sph/solid_mech/basic.py | 57 +-
pysph/sph/solid_mech/hvi.py | 5 +-
pysph/sph/solid_mech/linalg.pxd | 15 -
pysph/sph/solid_mech/linalg.pyx | 620 --------------
pysph/sph/surface_tension.py | 18 +-
pysph/sph/tests/test_equations.py | 9 +-
pysph/sph/wc/basic.py | 30 +-
pysph/sph/wc/transport_velocity.py | 200 +++--
pysph/sph/wc/viscosity.py | 8 +-
pysph/tools/automation.py | 353 ++++++++
pysph/tools/cli.py | 64 ++
pysph/tools/interpolator.py | 21 +-
pysph/tools/mayavi_viewer.py | 142 +++-
pysph/tools/pprocess.py | 39 +-
pysph/tools/run_parallel_script.py | 6 +
pysph/tools/sph_evaluator.py | 59 ++
pysph/tools/sphysics.py | 29 +-
pysph/tools/tests/test_sph_evaluator.py | 76 ++
pyzoltan/core/generator.py | 23 +-
pyzoltan/core/tests/geometric_partitioner.py | 6 +-
pyzoltan/core/tests/test_zoltan.py | 2 +-
requirements-2.6.txt | 4 +-
requirements.txt | 3 +-
setup.py | 48 +-
shippable.yml | 38 +-
tox.ini | 15 +
windows_env.bat | 3 -
155 files changed, 10903 insertions(+), 8469 deletions(-)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/pysph.git
More information about the debian-science-commits
mailing list