Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrap 0D Fixed Bed TSA unit model in extra_models/fixed_bed_tsa0d for Flowsheet Processor UI #1493

Draft
wants to merge 24 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
94c3153
Merge remote-tracking branch 'upstream/main'
dangunter Apr 20, 2023
b8efdf4
Merge remote-tracking branch 'upstream/main'
dangunter May 22, 2023
056e81a
Merge remote-tracking branch 'upstream/main'
dangunter Jun 29, 2023
f88b9f3
Merge remote-tracking branch 'upstream/main'
dangunter Sep 8, 2023
2efd782
Merge remote-tracking branch 'upstream/main'
dangunter Sep 14, 2023
ce3458b
outputs
dangunter Nov 2, 2023
0cf8157
Merge remote-tracking branch 'upstream/main'
dangunter Nov 11, 2023
ba731e1
Merge remote-tracking branch 'upstream/main'
dangunter Dec 2, 2023
d29229f
Merge remote-tracking branch 'upstream/main'
dangunter Apr 4, 2024
eb9ec7a
Merge remote-tracking branch 'upstream/main'
dangunter Jun 3, 2024
8e9ca11
Merge remote-tracking branch 'upstream/main'
dangunter Aug 9, 2024
4d83b7b
Merge remote-tracking branch 'upstream/main'
dangunter Oct 2, 2024
aa77236
initial code
dangunter Oct 2, 2024
b0c516c
working with a couple of feed vars and model options
dangunter Oct 10, 2024
f7b3839
Merge branch 'main' into west_coast_wrapper
dangunter Oct 10, 2024
8ab63fb
update test set test for default build params
CopyDemon Nov 14, 2024
5d40a2b
wrap tsa model, todo set correct rounding
CopyDemon Nov 14, 2024
1b98685
run black format file
CopyDemon Nov 14, 2024
aec023c
add ui out put value test
CopyDemon Nov 25, 2024
280e5d6
fix rounding and units move flue gas back into build function
CopyDemon Nov 25, 2024
72d1a88
cleanup import
CopyDemon Nov 25, 2024
6c89225
Add entry point group for idaes-flowsheet-processor
lbianchi-lbl Dec 10, 2024
d0209e7
Update import to idaes_flowsheet_processor
lbianchi-lbl Dec 11, 2024
9f962d4
base on meeting with Daison update tsa ui for flowsheet processer rem…
CopyDemon Dec 15, 2024
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
4 changes: 1 addition & 3 deletions idaes/core/base/flowsheet_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,7 @@ def __init__(self):
self.visualize = self._visualize_null
self.installed = False
else:
# FIXME the explicit submodule import is needed because the idaes_ui doesn't import its fv submodule
# otherwise, you get "AttributeError: module 'idaes_ui' has no 'fv' attribute"
import idaes_ui.fv
import idaes_ui

self.visualize = idaes_ui.fv.visualize
self.installed = True
Expand Down
Loading
Loading