Skip to content

Commit 524839d

Browse files
Merge pull request #1950 from Vaibhav-Chopra-GT/Rename_tortuosity_to_transport_efficiency3
Rename tortuosity to transport efficiency
2 parents 804ea24 + 8aca215 commit 524839d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+169
-137
lines changed

docs/source/models/submodels/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ Submodels
1818
particle_mechanics/index
1919
porosity/index
2020
thermal/index
21-
tortuosity/index
21+
transport_efficiency/index

docs/source/models/submodels/tortuosity/base_tortuosity.rst

Lines changed: 0 additions & 6 deletions
This file was deleted.

docs/source/models/submodels/tortuosity/bruggeman_tortuosity.rst

Lines changed: 0 additions & 8 deletions
This file was deleted.

docs/source/models/submodels/tortuosity/index.rst

Lines changed: 0 additions & 9 deletions
This file was deleted.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Base Model
2+
===========
3+
4+
.. autoclass:: pybamm.transport_efficiency.BaseModel
5+
:members:
6+
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Bruggeman Model
2+
===============
3+
4+
.. autoclass:: pybamm.transport_efficiency.Bruggeman
5+
:members:
6+
7+
8+
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
transport_efficiency
2+
====================
3+
4+
.. toctree::
5+
:maxdepth: 1
6+
7+
base_transport_efficiency
8+
bruggeman_transport_efficiency
9+

pybamm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
particle,
119119
porosity,
120120
thermal,
121-
tortuosity,
121+
transport_efficiency,
122122
particle_mechanics,
123123
)
124124
from .models.submodels.interface import kinetics

pybamm/citations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def print(self, filename=None, output_format="text"):
111111

112112

113113
def print_citations(filename=None, output_format="text"):
114-
""" See :meth:`Citations.print` """
114+
"""See :meth:`Citations.print`"""
115115
pybamm.citations.print(filename, output_format)
116116

117117

pybamm/expression_tree/interpolant.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,5 +181,3 @@ def _function_evaluate(self, evaluated_children):
181181
return res[:, np.newaxis]
182182
else: # pragma: no cover
183183
raise ValueError("Invalid dimension: {0}".format(self.dimension))
184-
185-

0 commit comments

Comments
 (0)