Fix errors caused by "dummy" solves#22
Open
reverendbedford wants to merge 1 commit into
Open
Conversation
Owner
|
This is bug came about when I changed the default, minimum number of global
Newton iterations to 2 from 1.
The code is now fixed to work properly for the case when the
user constrains all model displacements and does not set the
minimum number of iterations = 1.
Until I release new executables on www.warp3d.net <http://www.warp3d.net/>, the
work around is to set the minimum number of iterations to 1.
E.g.
nonlinear analysis parameters
solution technique direct sprase
maximum iterations 5
minimum iterations 1
convergence test norm res tol .01
…..
….
… On Feb 2, 2024, at 12:44 PM, Mark Messner ***@***.***> wrote:
This seems to work to fix the bug I found on Linux, but obviously needs more testing before merging in.
You can view, comment on, or merge this pull request online at:
#22
Commit Summary
e46793a <e46793a> Simple fix for avoiding pardiso segfaults if we don't actually have equations
File Changes (1 file <https://github.com/rhdodds/warp3d/pull/22/files>)
M src/drive_assemble_solve.f <https://github.com/rhdodds/warp3d/pull/22/files#diff-b094572b62c8809117167845d630fd5858a9ac1041c8f82a06a424d21130bcd0> (5)
Patch Links:
https://github.com/rhdodds/warp3d/pull/22.patch
https://github.com/rhdodds/warp3d/pull/22.diff
—
Reply to this email directly, view it on GitHub <#22>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AC7CB7UPJE3Y6RT2SPI5A53YRU6ZJAVCNFSM6AAAAABCXGPDCKVHI2DSMVQWIX3LMV43ASLTON2WKOZSGEYTKNRVGIYTANA>.
You are receiving this because you are subscribed to this thread.
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This seems to work to fix the bug I found on Linux, but obviously needs more testing before merging in.
Would fix #21