-
-
Notifications
You must be signed in to change notification settings - Fork 553
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
730 additions
and
523 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
1D Sub Meshes | ||
============= | ||
|
||
.. autoclass:: pybamm.SubMesh1D | ||
.. autoclass:: pybamm.one_dimensional_meshes.SubMesh1D | ||
:members: | ||
|
||
.. autoclass:: pybamm.Uniform1DSubMesh | ||
.. autoclass:: pybamm.one_dimensional_meshes.Uniform1DSubMesh | ||
:members: | ||
|
||
.. autoclass:: pybamm.Chebyshev1DSubMesh | ||
.. autoclass:: pybamm.one_dimensional_meshes.Chebyshev1DSubMesh | ||
:members: | ||
|
||
.. autoclass:: pybamm.GetExponential1DSubMesh | ||
.. autoclass:: pybamm.one_dimensional_meshes.GetExponential1DSubMesh | ||
:members: | ||
|
||
.. autoclass:: pybamm.Exponential1DSubMesh | ||
.. autoclass:: pybamm.one_dimensional_meshes.Exponential1DSubMesh | ||
:members: | ||
|
||
.. autoclass:: pybamm.one_dimensional_meshes.GetUserSupplied1DSubMesh | ||
:members: | ||
|
||
.. autoclass:: pybamm.one_dimensional_meshes.UserSupplied1DSubMesh | ||
:members: |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
2D Sub Meshes | ||
============= | ||
|
||
.. autoclass:: pybamm.two_dimensional_meshes.ScikitSubMesh2D | ||
:members: | ||
|
||
.. autoclass:: pybamm.two_dimensional_meshes.ScikitUniform2DSubMesh | ||
:members: | ||
|
||
.. autoclass:: pybamm.two_dimensional_meshes.ScikitChebyshev2DSubMesh | ||
:members: | ||
|
||
.. autoclass:: pybamm.two_dimensional_meshes.ScikitTopExponential2DSubMesh | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
0D Sub Mesh | ||
=========== | ||
|
||
.. autoclass:: pybamm.SubMesh0D | ||
.. autoclass:: pybamm.zero_dimensional_meshes.SubMesh0D | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from .base_submesh import SubMesh1D | ||
|
||
from .chebyshev_submesh import Chebyshev1DSubMesh | ||
from .exponential_submesh import GetExponential1DSubMesh, Exponential1DSubMesh | ||
from .uniform_submesh import Uniform1DSubMesh | ||
from .user_supplied_submesh import GetUserSupplied1DSubMesh, UserSupplied1DSubMesh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.