Skip to content

Commit 8179fef

Browse files
committed
add name attribute
1 parent 375b091 commit 8179fef

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

src/surfaces/test_functions/simulation/chemical/kinetics.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ class ConsecutiveReactionFunction(ODESimulationFunction):
7171
.. [1] Levenspiel, O. (1999). Chemical Reaction Engineering, 3rd ed.
7272
"""
7373

74+
name = "Consecutive Reaction Function"
75+
7476
_spec = {
7577
"simulation_based": True,
7678
"expensive": False,

src/surfaces/test_functions/simulation/dynamics/mechanical.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ class DampedOscillatorFunction(ODESimulationFunction):
7272
.. [1] Thomson, W.T. (1993). Theory of Vibration with Applications.
7373
"""
7474

75+
name = "Damped Oscillator Function"
76+
7577
_spec = {
7678
"simulation_based": True,
7779
"expensive": False,

src/surfaces/test_functions/simulation/dynamics/population.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ class LotkaVolterraFunction(ODESimulationFunction):
7070
in specie animali conviventi.
7171
"""
7272

73+
name = "Lotka-Volterra Function"
74+
7375
_spec = {
7476
"simulation_based": True,
7577
"expensive": False,

src/surfaces/test_functions/simulation/electromagnetic/circuits.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ class RLCCircuitFunction(ODESimulationFunction):
6868
.. [1] Horowitz, P. & Hill, W. (2015). The Art of Electronics, 3rd ed.
6969
"""
7070

71+
name = "RLC Circuit Function"
72+
7173
_spec = {
7274
"simulation_based": True,
7375
"expensive": False,
@@ -239,6 +241,8 @@ class RCFilterFunction(ODESimulationFunction):
239241
.. [1] Sedra, A.S. & Smith, K.C. (2014). Microelectronic Circuits, 7th ed.
240242
"""
241243

244+
name = "RC Filter Function"
245+
242246
_spec = {
243247
"simulation_based": True,
244248
"expensive": False,

0 commit comments

Comments
 (0)