Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
5 changes: 2 additions & 3 deletions src/pathsim_chem/tritium/bubbler.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
#########################################################################################
##
## Bubbler Block
## (blocks/fusion/bubbler.py)
##
#########################################################################################

# IMPORTS ===============================================================================

import numpy as np

from ..dynsys import DynamicalSystem
from ...events.schedule import ScheduleList
from pathsim.blocks.dynsys import DynamicalSystem
from pathsim.events.schedule import ScheduleList


# BLOCK DEFIINITIONS ====================================================================
Expand Down
3 changes: 1 addition & 2 deletions src/pathsim_chem/tritium/residencetime.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
#########################################################################################
##
## Blocks for residence time modeling
## (blocks/fusion/residencetime.py)
##
#########################################################################################

# IMPORTS ===============================================================================

import numpy as np

from ..dynsys import DynamicalSystem
from pathsim.blocks.dynsys import DynamicalSystem


# BLOCKS ================================================================================
Expand Down
3 changes: 1 addition & 2 deletions src/pathsim_chem/tritium/splitter.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
#########################################################################################
##
## Flow Splitter Block
## (blocks/fusion/splitter.py)
##
#########################################################################################

# IMPORTS ===============================================================================

import numpy as np

from ..function import Function
from pathsim.blocks.function import Function


# BLOCKS ================================================================================
Expand Down
5 changes: 2 additions & 3 deletions src/pathsim_chem/tritium/tcap.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
#########################################################################################
##
## Blocks for Thermal Cycle Absorption Process (TCAP) modelling
## (blocks/fusion/tcap.py)
##
#########################################################################################

# IMPORTS ===============================================================================

from ..ode import ODE
from pathsim.blocks.ode import ODE


# BLOCKS ================================================================================
Expand All @@ -16,7 +15,7 @@ class TCAP1D(ODE):
"""This block models the Thermal Cycle Absorption Process (TCAP) in 1d.

The model uses a 1d finite difference spatial discretization to construct
a nonlinear ODE internally as proposed in
a nonlinear ODE internally as proposed in

https://doi.org/10.1016/j.ijhydene.2023.03.101

Expand Down
2 changes: 1 addition & 1 deletion tests/tritium/test_bubbler.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

# TESTS ================================================================================

class TestFusionBubbler4(unittest.TestCase):
class TestTritiumBubbler4(unittest.TestCase):
"""
Test the implementation of the 'Bubbler4' block class from the fusion toolbox.
The block inherits from `ODE` and models a 4-vial tritium collection system.
Expand Down