Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
7f9c417
Add Bayless and Somerville (2024) GMM for Australia
thuanycostadelima May 14, 2026
4a26bae
Remove manual import from __init__.py
thuanycostadelima May 14, 2026
a4ad579
Trigger CI re-run on latest commit
thuanycostadelima May 14, 2026
46dd75a
Address review comments from CB-quakemodel
thuanycostadelima May 14, 2026
966d236
Update changelog and contributors list
thuanycostadelima May 14, 2026
fb97824
Merge remote-tracking branch 'upstream/master' into add-bayless-somer…
thuanycostadelima May 15, 2026
fc26fd6
Fix unit conversion: subtract ln(980.665) to convert from ln(cm/s2) t…
thuanycostadelima May 15, 2026
e50f58a
Fix _get_fM: replace boolean indexing with np.where for scalar compat…
thuanycostadelima May 15, 2026
780ad9f
Add BaylessSomerville2024 to API reference
thuanycostadelima May 15, 2026
457a099
Resolve changelog merge conflict
thuanycostadelima May 18, 2026
10a5ef4
Fix CSV values: convert from ln(g) to g for GEM test framework
thuanycostadelima May 18, 2026
4ac9907
Remove incorrect ln(980.665) conversion: coefficients are already in …
thuanycostadelima May 18, 2026
d0dd75a
Clarify unit comment: model equations produce ln(g) directly
thuanycostadelima May 18, 2026
809d22d
Use PGA() for pga_rock proxy; regenerate CSVs with pgat=0.0
thuanycostadelima May 18, 2026
9ac9143
Regenerate CSVs using T=0.0 for PGA proxy matching OQ PGA() row
thuanycostadelima May 18, 2026
063f137
Increase CSV precision to 8 decimal places to avoid rounding errors
thuanycostadelima May 18, 2026
a39f3dc
Fix pga row to use T=0.01s coefficients matching Fortran pgat=0.01
thuanycostadelima May 18, 2026
e60113c
Fix KeyError: use PGA() instead of SA(0.01) for pga_rock lookup
thuanycostadelima May 18, 2026
b778d93
Fix z1.0 basin term: use missing z1pt0=-999 in runner matching OQ def…
thuanycostadelima May 18, 2026
d3bcd0f
Fix C_PGA: use PGA() not SA(0.01) for pga_rock lookup
thuanycostadelima May 18, 2026
b8f15d9
Remove rounding from CSV values to avoid precision issues
thuanycostadelima May 18, 2026
c4b3f2f
Fix changelog merge conflict
thuanycostadelima May 18, 2026
e76a504
Restore original Jeff Bayless coefficients: pga and 0.010 rows from T…
thuanycostadelima May 18, 2026
c47f141
Fix _get_fHW footwall check; set pga row = 0.010 row; regenerate CSVs
thuanycostadelima May 18, 2026
5a13e31
Update changelog with BS24 review fixes
thuanycostadelima May 19, 2026
9fece4c
Update changelog: add BS24 GMM entry
thuanycostadelima May 20, 2026
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
1 change: 1 addition & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ Amirhossein Mohammadi (@amirxdbx) December 2025
Maoxin Wang (@MaoxinWang) December 2025
Antonio Scala (@antonio-scala) January 2026
Nicholas Clemett (@nc-hsu) January 2026
Thuany Costa de Lima (@thuanycostadelima) May 2026

Project management
------------------
Expand Down
4 changes: 4 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[Thuany Costa de Lima]
* Added Bayless and Somerville (2024) GMM for Australia:
BaylessSomerville2024Cratonic and BaylessSomerville2024NonCratonic.

[Michele Simionato]
* Extended use_rates to work also with IMT-dependent weights

Expand Down
7 changes: 7 additions & 0 deletions doc/api-reference/openquake.hazardlib.gsim.rst
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,13 @@ bayless_abrahamson_2018
:undoc-members:
:show-inheritance:

bayless_somerville_2024
------------------------------------
.. automodule:: openquake.hazardlib.gsim.bayless_somerville_2024
:members:
:undoc-members:
:show-inheritance:


eshm20_bchydro
------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions openquake/hazardlib/gsim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,4 @@ def get_portable_gsims():
if 'ctx' not in cls.compute.__annotations__:
portable[cls.__name__] = cls
return portable

Loading