- Update to 2019.1.0
* Added an implementation of the Bell finite element
(K. Bell 1969 doi:10.1002/nme.1620010180), with extra basis
functions for transformation theory from
Kirby (2018) doi:10.5802/smai-jcm.33.
- Update to 2018.1.0
* Remove Python 2 support
* Generalize Bubble element to CodimBubble to create bubbles on
entity of arbitrary codimension; add FacetBubble, keep Bubble
(as bubble on cell)
- Update to 2017.2.0
* Add quadrilateral and hexahedron reference cells
* Add quadrilateral and hexahedron elements (with a wrapping class
for TensorProductElement)
- Update to 2017.1.0
* Change PyPI package name to fenics-fiat.
* Extended the discontinuous trace element HDivTrace to support
tensor product reference cells. Tabulating the trace defined on
a tensor product cell relies on the argument entity to specify
a facet of the cell. The backwards compatibility case
entity=None does not support tensor product tabulation as a
result. Tabulating the trace of triangles or tetrahedron
remains unaffected and works as usual with or without an
entity argument.
- Drop obsolete Fix-regression-in-SymPy-1_2.patch
- Remove python3-devel build dependency, package is noarch.
OBS-URL: https://build.opensuse.org/request/show/772419
OBS-URL: https://build.opensuse.org/package/show/science/python3-FIAT?expand=0&rev=3
61 lines
2.1 KiB
RPMSpec
61 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package python-FIAT
|
|
#
|
|
# Copyright (c) 2020 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define modname FIAT
|
|
%define pyname fiat
|
|
%define modver 2019.1.0
|
|
Name: python3-%{modname}
|
|
Version: 2019.1.0
|
|
Release: 0
|
|
Summary: The FInite element Automatic Tabulator
|
|
License: LGPL-3.0-or-later
|
|
Group: Development/Languages/Python
|
|
URL: https://fenicsproject.org
|
|
Source0: https://bitbucket.org/fenics-project/%{pyname}/downloads/%{pyname}-%{version}.tar.gz
|
|
BuildRequires: python-rpm-macros
|
|
BuildRequires: python3-setuptools
|
|
Requires: python3-sympy
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
The FInite element Automatic Tabulator FIAT supports generation of
|
|
arbitrary order instances of the Lagrange elements on lines, triangles,
|
|
and tetrahedra. It is also capable of generating arbitrary order instances
|
|
of Jacobi-type quadrature rules on the same element shapes. Further,
|
|
H(div) and H(curl) conforming finite element spaces such as the families
|
|
of Raviart-Thomas, Brezzi-Douglas-Marini and Nedelec are supported on
|
|
triangles and tetrahedra. Upcoming versions will also support Hermite
|
|
and nonconforming elements.
|
|
|
|
%prep
|
|
%setup -q -n %{pyname}-%{version}
|
|
|
|
%build
|
|
python3 setup.py build
|
|
|
|
%install
|
|
python3 setup.py install --root %{buildroot} --prefix=%{_prefix}
|
|
|
|
%files
|
|
%doc AUTHORS ChangeLog.rst README.rst
|
|
%license COPYING COPYING.LESSER
|
|
%{python3_sitelib}/%{modname}
|
|
%{python3_sitelib}/fenics_fiat-%{modver}-py%{py3_ver}.egg-info
|
|
|
|
%changelog
|