-
Notifications
You must be signed in to change notification settings - Fork 247
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
Fluid/feature python solver derivation #2262
Merged
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
9a1ec94
Deriving fluid solvers from PythonSolver.
jcotela 2182cc7
Adapting the fluid base solver to match the PythonSolver structure.
jcotela fdcd7c9
Separating Import and Prepare model part methods.
jcotela 288cd08
Renaming base class and updating method names to match guidelines.
jcotela 283a43d
Adding _ValidateSettings method to check parameters.
jcotela 5f46100
First attempt at derivation.
jcotela c74aea5
Updating python solvers wrapper for the fluid.
jcotela 8a9cf4d
Making monolithic solver test run (assorted typos and bugfixes),
jcotela 62d2b76
Updating Fractional Step solvers.
jcotela 81bbb15
Fixing issue with restart initialization order.
jcotela 44a1e37
Porting trilinos monolithic solver + changes in trilinos FS solver.
jcotela a924644
Deriving the compressible solver from FluidSolver.
jcotela 7373be5
Fixing last commit.
jcotela e1bb5b6
Bugfix: non-threadsafe access to processinfo in vms.
jcotela 4364dc5
Solving initialization order issue with _ValidateSettings.
jcotela ad0cb37
WIP: Ongoing work on the embedded solver (and fixing its tests).
jcotela d6f4785
Updating manufactured solution test (it works now).
jcotela 32b6f35
Updating embedded ausas solver.
jcotela 7f6ffcd
All tests in queue \"all\" pass now.
jcotela b96b4b4
Porting FM-ALE solver and changing a few solver defaults.
jcotela f8c0b86
Physical property assignment now in PrepareModelPart for all solvers.
jcotela 126e759
Updating steady navier stokes solver to new format.
jcotela 7dec61c
Updating trilinos embedded solvers.
jcotela 1dc5f57
Fixing a few typos.
jcotela 00d10a8
Merging recent changes.
jcotela 9abc76d
Removing debug print.
jcotela 66ba1e8
Editing error message.
jcotela 9ec9639
Removing an unreachable check (impossible condition) and some prints.
jcotela File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is in the baseclass now
Also I am writing a process for saving restarts atm such that one does not have to manually include it in each stage
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this will come in #2135? I'll update once that is merged, then.