Skip to content

Commit 153281a

Browse files
authored
Remove unused class Tabulated2D (#3818)
1 parent 53ce191 commit 153281a

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

openmc/data/endf.py

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -225,24 +225,3 @@ def gnds_name(self):
225225
self.target['mass_number'],
226226
self.target['isomeric_state'])
227227

228-
229-
class Tabulated2D:
230-
"""Metadata for a two-dimensional function.
231-
232-
This is a dummy class that is not really used other than to store the
233-
interpolation information for a two-dimensional function. Once we refactor
234-
to adopt GNDS-like data containers, this will probably be removed or
235-
extended.
236-
237-
Parameters
238-
----------
239-
breakpoints : Iterable of int
240-
Breakpoints for interpolation regions
241-
interpolation : Iterable of int
242-
Interpolation scheme identification number, e.g., 3 means y is linear in
243-
ln(x).
244-
245-
"""
246-
def __init__(self, breakpoints, interpolation):
247-
self.breakpoints = breakpoints
248-
self.interpolation = interpolation

0 commit comments

Comments
 (0)