[sfepy] 01/04: Merge tag 'upstream/2016.2'

Anton Gladky gladk at moszumanska.debian.org
Sat May 14 07:43:10 UTC 2016


This is an automated email from the git hooks/post-receive script.

gladk pushed a commit to branch master
in repository sfepy.

commit 682b7f11f9b6e0b6bf5739a228b67b9900107a40
Merge: c7dc95d 6d07336
Author: Anton Gladky <gladk at debian.org>
Date:   Sat May 14 08:02:46 2016 +0200

    Merge tag 'upstream/2016.2'
    
    Upstream version 2016.2

 doc/archived_news.rst                              |    4 +
 doc/developer_guide.rst                            |   13 +-
 doc/index.rst                                      |   12 +-
 doc/news.rst                                       |    9 +-
 doc/release_notes.rst                              |  137 ++
 doc/release_tasks.rst                              |    2 +-
 doc/src/sfepy/discrete/structural/fields.rst       |    6 +
 doc/src/sfepy/discrete/structural/mappings.rst     |    6 +
 doc/src/sfepy/mechanics/shell10x.rst               |    6 +
 doc/src/sfepy/postprocess/dataset_manager.rst      |    6 -
 doc/src/sfepy/terms/terms_acoustic.rst             |    6 -
 doc/src/sfepy/terms/terms_shells.rst               |    6 +
 doc/terms_overview.rst                             |   26 +-
 doc/users_guide.rst                                |    3 -
 .../large_deformation/compare_elastic_materials.py |    7 +-
 .../linear_elasticity/elastic_contact_planes.py    |    6 +-
 .../linear_elasticity/elastic_contact_sphere.py    |    6 +-
 examples/linear_elasticity/its2D_1.py              |    9 +-
 examples/linear_elasticity/linear_elastic.py       |    5 +-
 .../linear_elasticity/linear_elastic_damping.py    |    3 +-
 .../linear_elastic_interactive.py                  |    5 +-
 .../linear_elasticity/linear_elastic_probes.py     |   13 -
 .../linear_elasticity/linear_elastic_tractions.py  |   10 +-
 .../linear_elasticity/material_nonlinearity.py     |    6 +-
 examples/linear_elasticity/shell10x_cantilever.py  |  147 ++
 .../shell10x_cantilever_interactive.py             |  378 ++++++
 examples/multi_physics/biot.py                     |    6 +-
 .../multi_physics/biot_parallel_interactive.py     |    6 +-
 examples/multi_physics/piezo_elasticity.py         |    6 +-
 examples/phononic/band_gaps.py                     |    1 +
 meshes/elements/3_2_4_2.mesh                       |   14 +
 meshes/various_formats/msh_tetra.msh               |  202 +++
 meshes/various_formats/msh_tri.msh                 | 1410 ++++++++++++++++++++
 run_tests.py                                       |    3 +
 script/gen_gallery.py                              |   12 +
 script/gen_term_table.py                           |   38 +-
 script/plot_condition_numbers.py                   |    5 +-
 scripts-common/extractor.py                        |    1 -
 scripts-common/homogen.py                          |    1 -
 scripts-common/phonon.py                           |    1 -
 scripts-common/postproc.py                         |    1 -
 scripts-common/probe.py                            |    1 -
 scripts-common/run_tests.py                        |    1 -
 scripts-common/schroedinger.py                     |    1 -
 scripts-common/shaper.py                           |    1 -
 scripts-common/simple.py                           |    1 -
 scripts-common/test_install.py                     |    1 -
 setup.py                                           |   44 +-
 sfepy-run                                          |   26 +-
 sfepy/discrete/common/extmods/crefcoors.pyx        |    6 +-
 sfepy/discrete/common/extmods/mesh.c               |   12 +-
 sfepy/discrete/common/extmods/setup.py             |   10 +-
 sfepy/discrete/common/fields.py                    |   13 +-
 sfepy/discrete/common/mappings.py                  |   12 +-
 sfepy/discrete/equations.py                        |    2 +-
 sfepy/discrete/evaluate.py                         |    2 +-
 sfepy/discrete/fem/extmods/setup.py                |   10 +-
 sfepy/discrete/fem/fields_base.py                  |   47 +-
 sfepy/discrete/fem/meshio.py                       |  219 ++-
 sfepy/discrete/iga/extmods/nurbs.c                 |    6 +
 sfepy/discrete/iga/extmods/setup.py                |   17 +-
 sfepy/discrete/iga/fields.py                       |    7 +-
 sfepy/discrete/setup.py                            |    1 +
 sfepy/discrete/structural/__init__.py              |    0
 sfepy/discrete/structural/fields.py                |   79 ++
 sfepy/discrete/structural/mappings.py              |   99 ++
 sfepy/discrete/{ => structural}/setup.py           |   12 +-
 sfepy/discrete/variables.py                        |   13 +-
 sfepy/homogenization/engine.py                     |  257 ++--
 sfepy/linalg/extmods/setup.py                      |   10 +-
 sfepy/mechanics/shell10x.py                        |  408 ++++++
 sfepy/mesh/bspline.py                              |   14 +-
 sfepy/postprocess/dataset_manager.py               |  265 ----
 sfepy/postprocess/sources.py                       |    4 +-
 sfepy/postprocess/utils.py                         |    2 +-
 sfepy/postprocess/viewer.py                        |    5 +-
 sfepy/terms/extmods/setup.py                       |   10 +-
 sfepy/terms/extmods/terms.h                        |    1 -
 sfepy/terms/extmods/terms.pyx                      |  142 +-
 sfepy/terms/extmods/terms_acoustic.c               |  236 ----
 sfepy/terms/extmods/terms_acoustic.h               |   35 -
 sfepy/terms/extmods/terms_basic.c                  |    8 +-
 sfepy/terms/extmods/terms_diffusion.c              |   79 +-
 sfepy/terms/extmods/terms_diffusion.h              |    4 +
 sfepy/terms/extmods/terms_elastic.c                |  321 ++---
 sfepy/terms/extmods/terms_elastic.h                |    7 +-
 sfepy/terms/terms.py                               |   10 +-
 sfepy/terms/terms_acoustic.py                      |   44 -
 sfepy/terms/terms_adj_navier_stokes.py             |    5 +-
 sfepy/terms/terms_basic.py                         |    2 +-
 sfepy/terms/terms_diffusion.py                     |   41 +
 sfepy/terms/terms_dot.py                           |    4 +-
 sfepy/terms/terms_elastic.py                       |  138 +-
 sfepy/terms/terms_navier_stokes.py                 |    8 +-
 sfepy/terms/terms_point.py                         |    2 +-
 sfepy/terms/terms_shells.py                        |  203 +++
 sfepy/version.py                                   |    2 +-
 test_install.py                                    |   41 +-
 tests/test_elasticity_small_strain.py              |   66 +-
 tests/test_high_level.py                           |    7 +-
 tests/test_input_shell10x_cantilever.py            |    6 +
 tests/test_lcbc_2d.py                              |    7 +-
 tests/test_lcbc_3d.py                              |    7 +-
 tests/test_mesh_interp.py                          |   16 +-
 tests/test_meshio.py                               |    4 +-
 tests/test_term_call_modes.py                      |   52 +-
 106 files changed, 4207 insertions(+), 1453 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/sfepy.git



More information about the debian-science-commits mailing list