Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[Savvinos Aristeidou]
* Added new ANN-based GMM in the gsim library, named `aristeidou_2024`
* Added new IMs, that is the FIV3, Sa_avg2, and Sa_avg3

[Michele Simionato]
* Reading the site model in calculations with ruptures.hdf5 and making
`minimum_intensity` mandatory
Expand Down
8 changes: 8 additions & 0 deletions doc/api-reference/openquake.hazardlib.gsim.rst
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,14 @@ aristeidou_2023
:undoc-members:
:show-inheritance:

aristeidou_2024
---------------------------------------------------

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

armenia_2016
---------------------------------------------------

Expand Down
6 changes: 6 additions & 0 deletions openquake/commonlib/oqvalidation.py
Original file line number Diff line number Diff line change
Expand Up @@ -1526,6 +1526,12 @@ def check_gsims(self, gsims):
im = from_string(imt)
if imt.startswith("SA"):
imts.add("SA")
elif imt.startswith("Sa_avg2"):
imts.add("Sa_avg2")
elif imt.startswith("Sa_avg3"):
imts.add("Sa_avg3")
elif imt.startswith("FIV3"):
imts.add("FIV3")
elif imt.startswith("SDi"):
imts.add("SDi")
elif imt.startswith("EAS"):
Expand Down
Loading