-
Notifications
You must be signed in to change notification settings - Fork 234
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
Brune and Smoothed Brune source time functions #1649
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this PR shouldn't touch this file. |
This file was deleted.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. deleting this file shouldn't occur. all the file in the root There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this PR shouldn't touch this file. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
PDE 1999 01 01 00 00 00.00 67000 67000 -25000 4.2 4.2 homog_test | ||
event name: homog_test | ||
time shift: 0.0000 | ||
half duration: 5.0 | ||
latorUTM: 67000.0 | ||
longorUTM: 67000.0 | ||
depth: 30.0 | ||
Mrr: -7.600000e+27 | ||
Mtt: 7.700000e+27 | ||
Mpp: -2.000000e+26 | ||
Mrt: -2.500000e+28 | ||
Mrp: 4.000000e+26 | ||
Mtp: -2.500000e+27 |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here |
This file was deleted.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here |
Large diffs are not rendered by default.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here |
This file was deleted.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
X20 DB 67000.00 22732.14 0.0 0.0 | ||
X30 DB 67000.00 34696.43 0.0 0.0 | ||
X40 DB 67000.00 46660.71 0.0 0.0 | ||
X50 DB 67000.00 58625.00 0.0 0.0 |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the PR shouldn't touch the m4/ folder. the content in m4/ has been updated to the most recent CIG version just recently. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -838,7 +838,7 @@ | |
|
||
! returns source time function value for specified time | ||
|
||
use constants, only: USE_MONOCHROMATIC_CMT_SOURCE | ||
use constants, only: PI,USE_MONOCHROMATIC_CMT_SOURCE | ||
|
||
use specfem_par, only: USE_FORCE_POINT_SOURCE,USE_RICKER_TIME_FUNCTION, & | ||
hdur,hdur_Gaussian,force_stf | ||
|
@@ -857,6 +857,7 @@ | |
|
||
double precision, external :: comp_source_time_function,comp_source_time_function_rickr, & | ||
comp_source_time_function_gauss,comp_source_time_function_gauss_2, & | ||
comp_source_time_function_brune,comp_source_time_function_smooth_brune, & | ||
comp_source_time_function_mono,comp_source_time_function_ext | ||
|
||
! external source time function | ||
|
@@ -890,6 +891,18 @@ | |
case (4) | ||
! Gaussian source time function by Meschede et al. (2011) | ||
stf = comp_source_time_function_gauss_2(time_source_dble,hdur(isource)) | ||
case (5) | ||
! Brune source time function | ||
! hdur is the rise time | ||
! Frequency parameter: | ||
f0=2.0d0*PI/hdur(isource) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. better to add the factor 2 PI in the source time function, similar as done above for the other functions. |
||
stf = comp_source_time_function_brune(time_source_dble,f0) | ||
case (6) | ||
! Smoothed Brune source time function | ||
! hdur is the rise time | ||
! Frequency parameter: | ||
f0=2.0d0*PI/hdur(isource) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here |
||
stf = comp_source_time_function_smooth_brune(time_source_dble,f0) | ||
case default | ||
stop 'unsupported force_stf value!' | ||
end select | ||
|
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.
deleting this file shouldn't occur. all the file in the root
DATA/
folder are symlinks to theDATA/
files in the exampleEXAMPLES/applications/homogeneous_halfspace/