[BUG FIX] Get elevation used bottom faces when BOTTOM_FREE_SURFACE=.true. & t0 assumed hdur is half duration even though USE_RICKER is true.#1869
Merged
Conversation
…ation for CMTSOLUTION when USE_RICKER is true.
Author
|
FYI, @Rohit-Kakodkar, @icui |
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## devel #1869 +/- ##
==========================================
- Coverage 40.79% 40.79% -0.01%
==========================================
Files 276 276
Lines 65953 65963 +10
Branches 10577 10581 +4
==========================================
+ Hits 26906 26910 +4
- Misses 39033 39039 +6
Partials 14 14
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Member
|
thanks 🙏 Lucas! |
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.
Elevation
When
the faces of the bottom elements are being prepended to the free surface elements. As a result the optimized
get_elevationmethod that use free surface horizontal position, will check the bottom surfaces first. This fix skips those elements ifBOTTOM_FREE_SURFACE = .false..T0 for CMT+Ricker
This unrelated bug assumed that the
CMTSOLUTION's half-duration is a indeed a half-duration, even though thesetting assumes it to be
f0. As a result for very smallf0(big pulse width) the start time is very close to0.0instead of starting much earlier.This PR fixes that by using the same
t0computation as theFORCESOLUTION's Ricker wavelet.