llg3d 1.2.0__tar.gz → 1.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {llg3d-1.2.0 → llg3d-1.4.0}/AUTHORS +3 -2
- {llg3d-1.2.0/src/llg3d.egg-info → llg3d-1.4.0}/PKG-INFO +4 -2
- {llg3d-1.2.0 → llg3d-1.4.0}/README.md +1 -0
- {llg3d-1.2.0 → llg3d-1.4.0}/pyproject.toml +7 -12
- llg3d-1.4.0/src/llg3d/__init__.py +1 -0
- llg3d-1.4.0/src/llg3d/post/__init__.py +1 -0
- {llg3d-1.2.0 → llg3d-1.4.0/src/llg3d.egg-info}/PKG-INFO +4 -2
- {llg3d-1.2.0 → llg3d-1.4.0}/src/llg3d.egg-info/requires.txt +1 -0
- llg3d-1.2.0/src/llg3d/__init__.py +0 -1
- llg3d-1.2.0/src/llg3d/post/__init__.py +0 -0
- {llg3d-1.2.0 → llg3d-1.4.0}/LICENSE +0 -0
- {llg3d-1.2.0 → llg3d-1.4.0}/setup.cfg +0 -0
- {llg3d-1.2.0 → llg3d-1.4.0}/src/llg3d/llg3d.py +0 -0
- {llg3d-1.2.0 → llg3d-1.4.0}/src/llg3d/llg3d_seq.py +0 -0
- {llg3d-1.2.0 → llg3d-1.4.0}/src/llg3d/post/process.py +0 -0
- {llg3d-1.2.0 → llg3d-1.4.0}/src/llg3d/post/temperature.py +0 -0
- {llg3d-1.2.0 → llg3d-1.4.0}/src/llg3d.egg-info/SOURCES.txt +0 -0
- {llg3d-1.2.0 → llg3d-1.4.0}/src/llg3d.egg-info/dependency_links.txt +0 -0
- {llg3d-1.2.0 → llg3d-1.4.0}/src/llg3d.egg-info/entry_points.txt +0 -0
- {llg3d-1.2.0 → llg3d-1.4.0}/src/llg3d.egg-info/top_level.txt +0 -0
- {llg3d-1.2.0 → llg3d-1.4.0}/tests/test_llg3d.py +0 -0
- {llg3d-1.2.0 → llg3d-1.4.0}/tests/test_llg3d_seq.py +0 -0
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
This code was started by Clémentine Courtès <clementine.courtes@math.unistra.fr> as a jupyter notebook
|
|
1
|
+
This code was started by Clémentine Courtès <clementine.courtes@math.unistra.fr> (IRMA, Université de Strasbourg) as a jupyter notebook
|
|
2
2
|
in 2022. It was then converted to a python package, optimized and parallelized with MPI
|
|
3
|
-
by Matthieu Boileau <matthieu.boileau@math.unistra.fr
|
|
3
|
+
by Matthieu Boileau <matthieu.boileau@math.unistra.fr> (IRMA, CNRS).
|
|
4
|
+
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: llg3d
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.4.0
|
|
4
4
|
Summary: Solveur pour l'équation de Landau-Lifshitz-Gilbert stochastique en 3D
|
|
5
|
-
Author-email:
|
|
5
|
+
Author-email: Clémentine Courtès <clementine.courtes@math.unistra.fr>, Matthieu Boileau <matthieu.boileau@math.unistra.fr>
|
|
6
6
|
Project-URL: Homepage, https://gitlab.math.unistra.fr/llg3d/llg3d
|
|
7
7
|
Classifier: Programming Language :: Python :: 3
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -29,6 +29,7 @@ Requires-Dist: sphinx-autobuild; extra == "doc"
|
|
|
29
29
|
Requires-Dist: sphinx-prompt; extra == "doc"
|
|
30
30
|
Requires-Dist: sphinx-last-updated-by-git; extra == "doc"
|
|
31
31
|
Requires-Dist: sphinxcontrib-programoutput; extra == "doc"
|
|
32
|
+
Requires-Dist: sphinxcontrib-bibtex; extra == "doc"
|
|
32
33
|
|
|
33
34
|
# LLG3D: A solver for the stochastic Landau-Lifshitz-Gilbert equation in 3D
|
|
34
35
|
|
|
@@ -36,6 +37,7 @@ Requires-Dist: sphinxcontrib-programoutput; extra == "doc"
|
|
|
36
37
|
[](https://llg3d.pages.math.unistra.fr/llg3d/coverage)
|
|
37
38
|
[](https://gitlab.math.unistra.fr/llg3d/llg3d/-/releases)
|
|
38
39
|
[](https://llg3d.pages.math.unistra.fr/llg3d/)
|
|
40
|
+
[](https://archive.softwareheritage.org/browse/origin/?origin_url=https://gitlab.math.unistra.fr/llg3d/llg3d)
|
|
39
41
|
|
|
40
42
|
LLG3D is written in Python and utilizes the MPI library for parallelizing computations.
|
|
41
43
|
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
[](https://llg3d.pages.math.unistra.fr/llg3d/coverage)
|
|
5
5
|
[](https://gitlab.math.unistra.fr/llg3d/llg3d/-/releases)
|
|
6
6
|
[](https://llg3d.pages.math.unistra.fr/llg3d/)
|
|
7
|
+
[](https://archive.softwareheritage.org/browse/origin/?origin_url=https://gitlab.math.unistra.fr/llg3d/llg3d)
|
|
7
8
|
|
|
8
9
|
LLG3D is written in Python and utilizes the MPI library for parallelizing computations.
|
|
9
10
|
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = [
|
|
3
|
-
"setuptools>=61.2",
|
|
4
|
-
]
|
|
2
|
+
requires = ["setuptools>=61.2"]
|
|
5
3
|
build-backend = "setuptools.build_meta"
|
|
6
4
|
|
|
7
5
|
[project]
|
|
8
6
|
name = "llg3d"
|
|
9
7
|
authors = [
|
|
10
|
-
{ name = "
|
|
8
|
+
{ name = "Clémentine Courtès", email = "clementine.courtes@math.unistra.fr" },
|
|
9
|
+
{ name = "Matthieu Boileau", email = "matthieu.boileau@math.unistra.fr" },
|
|
11
10
|
]
|
|
12
11
|
description = "Solveur pour l'équation de Landau-Lifshitz-Gilbert stochastique en 3D"
|
|
13
12
|
classifiers = [
|
|
@@ -16,12 +15,7 @@ classifiers = [
|
|
|
16
15
|
"Operating System :: OS Independent",
|
|
17
16
|
]
|
|
18
17
|
requires-python = ">=3.6"
|
|
19
|
-
dependencies = [
|
|
20
|
-
"numpy",
|
|
21
|
-
"mpi4py",
|
|
22
|
-
"matplotlib",
|
|
23
|
-
"scipy"
|
|
24
|
-
]
|
|
18
|
+
dependencies = ["numpy", "mpi4py", "matplotlib", "scipy"]
|
|
25
19
|
dynamic = ["version"]
|
|
26
20
|
|
|
27
21
|
|
|
@@ -47,7 +41,8 @@ doc = [
|
|
|
47
41
|
"sphinx-autobuild",
|
|
48
42
|
"sphinx-prompt",
|
|
49
43
|
"sphinx-last-updated-by-git",
|
|
50
|
-
"sphinxcontrib-programoutput"
|
|
44
|
+
"sphinxcontrib-programoutput",
|
|
45
|
+
"sphinxcontrib-bibtex",
|
|
51
46
|
]
|
|
52
47
|
|
|
53
48
|
[tool.setuptools]
|
|
@@ -65,4 +60,4 @@ attr = "llg3d.__version__"
|
|
|
65
60
|
|
|
66
61
|
[tool.coverage.run]
|
|
67
62
|
parallel = true
|
|
68
|
-
source = ["src/"]
|
|
63
|
+
source = ["src/"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.4.0"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Post-processing tools for LLG3D."""
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: llg3d
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.4.0
|
|
4
4
|
Summary: Solveur pour l'équation de Landau-Lifshitz-Gilbert stochastique en 3D
|
|
5
|
-
Author-email:
|
|
5
|
+
Author-email: Clémentine Courtès <clementine.courtes@math.unistra.fr>, Matthieu Boileau <matthieu.boileau@math.unistra.fr>
|
|
6
6
|
Project-URL: Homepage, https://gitlab.math.unistra.fr/llg3d/llg3d
|
|
7
7
|
Classifier: Programming Language :: Python :: 3
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -29,6 +29,7 @@ Requires-Dist: sphinx-autobuild; extra == "doc"
|
|
|
29
29
|
Requires-Dist: sphinx-prompt; extra == "doc"
|
|
30
30
|
Requires-Dist: sphinx-last-updated-by-git; extra == "doc"
|
|
31
31
|
Requires-Dist: sphinxcontrib-programoutput; extra == "doc"
|
|
32
|
+
Requires-Dist: sphinxcontrib-bibtex; extra == "doc"
|
|
32
33
|
|
|
33
34
|
# LLG3D: A solver for the stochastic Landau-Lifshitz-Gilbert equation in 3D
|
|
34
35
|
|
|
@@ -36,6 +37,7 @@ Requires-Dist: sphinxcontrib-programoutput; extra == "doc"
|
|
|
36
37
|
[](https://llg3d.pages.math.unistra.fr/llg3d/coverage)
|
|
37
38
|
[](https://gitlab.math.unistra.fr/llg3d/llg3d/-/releases)
|
|
38
39
|
[](https://llg3d.pages.math.unistra.fr/llg3d/)
|
|
40
|
+
[](https://archive.softwareheritage.org/browse/origin/?origin_url=https://gitlab.math.unistra.fr/llg3d/llg3d)
|
|
39
41
|
|
|
40
42
|
LLG3D is written in Python and utilizes the MPI library for parallelizing computations.
|
|
41
43
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "1.2.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|