evoxels 0.1.0__tar.gz → 0.1.1__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.
- {evoxels-0.1.0 → evoxels-0.1.1}/PKG-INFO +3 -5
- {evoxels-0.1.0 → evoxels-0.1.1}/README.md +1 -3
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels.egg-info/PKG-INFO +3 -5
- {evoxels-0.1.0 → evoxels-0.1.1}/pyproject.toml +2 -2
- {evoxels-0.1.0 → evoxels-0.1.1}/LICENSE +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels/__init__.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels/boundary_conditions.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels/fd_stencils.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels/function_approximators.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels/inversion.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels/precompiled_solvers/__init__.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels/precompiled_solvers/allen_cahn.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels/precompiled_solvers/cahn_hilliard.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels/problem_definition.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels/profiler.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels/solvers.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels/timesteppers.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels/utils.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels/voxelfields.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels/voxelgrid.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels.egg-info/SOURCES.txt +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels.egg-info/dependency_links.txt +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels.egg-info/requires.txt +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/evoxels.egg-info/top_level.txt +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/setup.cfg +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/tests/test_fields.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/tests/test_inversion.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/tests/test_laplace.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/tests/test_rhs.py +0 -0
- {evoxels-0.1.0 → evoxels-0.1.1}/tests/test_solvers.py +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: evoxels
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Differentiable physics framework for voxel-based microstructure simulations
|
|
5
5
|
Author-email: Simon Daubner <s.daubner@imperial.ac.uk>
|
|
6
6
|
License: MIT
|
|
7
7
|
Classifier: Development Status :: 4 - Beta
|
|
@@ -49,9 +49,7 @@ A differentiable physics framework for voxel-based microstructure simulations
|
|
|
49
49
|
|
|
50
50
|
For more detailed information about the code [read the docs](https://evoxels.readthedocs.io).
|
|
51
51
|
|
|
52
|
-
|
|
53
|
-
<img src="evoxels.png" width="90%"></img>
|
|
54
|
-
</p>
|
|
52
|
+

|
|
55
53
|
|
|
56
54
|
```
|
|
57
55
|
In a world of cubes and blocks,
|
|
@@ -5,9 +5,7 @@ A differentiable physics framework for voxel-based microstructure simulations
|
|
|
5
5
|
|
|
6
6
|
For more detailed information about the code [read the docs](https://evoxels.readthedocs.io).
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
<img src="evoxels.png" width="90%"></img>
|
|
10
|
-
</p>
|
|
8
|
+

|
|
11
9
|
|
|
12
10
|
```
|
|
13
11
|
In a world of cubes and blocks,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: evoxels
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Differentiable physics framework for voxel-based microstructure simulations
|
|
5
5
|
Author-email: Simon Daubner <s.daubner@imperial.ac.uk>
|
|
6
6
|
License: MIT
|
|
7
7
|
Classifier: Development Status :: 4 - Beta
|
|
@@ -49,9 +49,7 @@ A differentiable physics framework for voxel-based microstructure simulations
|
|
|
49
49
|
|
|
50
50
|
For more detailed information about the code [read the docs](https://evoxels.readthedocs.io).
|
|
51
51
|
|
|
52
|
-
|
|
53
|
-
<img src="evoxels.png" width="90%"></img>
|
|
54
|
-
</p>
|
|
52
|
+

|
|
55
53
|
|
|
56
54
|
```
|
|
57
55
|
In a world of cubes and blocks,
|
|
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "evoxels"
|
|
7
|
-
version = "0.1.
|
|
8
|
-
description = "
|
|
7
|
+
version = "0.1.1"
|
|
8
|
+
description = "Differentiable physics framework for voxel-based microstructure simulations"
|
|
9
9
|
authors = [
|
|
10
10
|
{ name = "Simon Daubner", email = "s.daubner@imperial.ac.uk" }
|
|
11
11
|
]
|
|
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
|
|
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
|