We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16dea37 commit 104f920Copy full SHA for 104f920
1 file changed
src/pathsim_chem/tritium/tcap.py
@@ -12,15 +12,16 @@
12
# BLOCKS ================================================================================
13
14
class TCAP1D(ODE):
15
- """This block models the Thermal Cycle Absorption Process (TCAP) in 1d.
+ """This block models the Thermal Cycle Absorption Process (TCAP) in 1d.
16
17
- The model uses a 1d finite difference spatial discretization to construct
+ The model uses a 1d finite difference spatial discretization to construct
18
a nonlinear ODE internally as proposed in
19
20
https://doi.org/10.1016/j.ijhydene.2023.03.101
21
22
-
23
"""
24
- raise NotImplementedError("TCAP1D block is currently not impolemented!")
+
+ def __init__(self, *args, **kwargs):
25
+ raise NotImplementedError("TCAP1D block is not yet implemented")
26
27
0 commit comments