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

Full wastewater treatment plant with ASM2D for P tracking #1113

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
35142ae
modified model transformation
agarciadiego Aug 11, 2023
1f3a587
copy of translator_adm1_asm2d
adam-a-a Aug 14, 2023
70c2e79
merge copies of modified test files
adam-a-a Aug 14, 2023
e458074
copy translator_asm2d_adm1
adam-a-a Aug 14, 2023
8a71118
change back eps value on translator_asm2d_adm1
adam-a-a Aug 14, 2023
63610f9
change near-zero value regression tests to have absolute tolerance in…
adam-a-a Aug 14, 2023
6e0ae29
run black
adam-a-a Aug 17, 2023
09109a3
fix pydantic
adam-a-a Aug 17, 2023
3aa0f22
Merge branch 'main' into modified_models
adam-a-a Aug 18, 2023
5022df3
Merge branch 'main' into modified_models
adam-a-a Aug 23, 2023
c3ebea1
add full flowsheet for WWTP with asm2d/adm1
adam-a-a Aug 24, 2023
2d0af6d
updating plant wide WWTP with P tracking flowsheet
adam-a-a Aug 24, 2023
7c42215
Merge branch 'modified_models' into full_wwtp_asm2d
adam-a-a Aug 24, 2023
44db62a
troubleshooting failed init of AD; need better tear guesses and have …
adam-a-a Aug 24, 2023
36b5e05
prviously initialization failure w try/except left DOF<0; revisit. Th…
adam-a-a Aug 25, 2023
9b19186
setting 0 iterLim results in failed initialization, DOF = -21
adam-a-a Aug 25, 2023
be00825
iterlim = 1: initialization passes but boxed solve still fails; add r…
adam-a-a Aug 25, 2023
a93f42b
apply scaling of asm1 to asm2d modified; start debugging flowsheet
adam-a-a Aug 26, 2023
7b913d2
added default scale factors to modified asm2d; checking model initial…
adam-a-a Aug 26, 2023
80a99c5
Merge branch 'main' into full_wwtp_asm2d
adam-a-a Aug 26, 2023
9502e55
debugging attempts
adam-a-a Aug 28, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
)
from watertap.core.util.initialization import assert_degrees_of_freedom
from pyomo.util.check_units import assert_units_consistent

from watertap.core.util.debugging_tools import *

def main():
m = build_flowsheet()
Expand All @@ -76,6 +76,9 @@ def main():

initialize_system(m)

check_initial_point(m)
print("BSM2")
assert False
results = solve(m)

add_costing(m)
Expand Down
Loading
Loading