Skip to content

Commit c743e51

Browse files
committed
As per RWG, removed maximum vref limit from Python GP site response code, as this limit is already implemented in the GP C site module
1 parent c73e4c7 commit c743e51

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

bbp/comps/wcc_siteamp.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33
BSD 3-Clause License
44
5-
Copyright (c) 2023, University of Southern California
5+
Copyright (c) 2025, University of Southern California
66
All rights reserved.
77
88
Redistribution and use in source and binary forms, with or without
@@ -481,8 +481,6 @@ def run(self):
481481
for sites in site_list:
482482
station_name = sites.scode
483483
station_vs30 = sites.vs30
484-
if station_vs30 > config.VREF_MAX:
485-
station_vs30 = config.VREF_MAX
486484

487485
print("*** WccSiteamp Processing station %s..." % (station_name))
488486

bbp/comps/wcc_siteamp_cfg.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
"""
33
BSD 3-Clause License
44
5-
Copyright (c) 2021, University of Southern California
5+
Copyright (c) 2025, University of Southern California
66
All rights reserved.
77
88
Redistribution and use in source and binary forms, with or without
@@ -52,7 +52,6 @@ def __init__(self, vmodel_name, method):
5252
self.SITEAMP_MODEL = "bssa2014"
5353
self.FILTLIST = "filtmatchlist1"
5454
self.GEN_ROCK_VS = 865
55-
self.VREF_MAX = 1100
5655
self.FMIN = 0.05
5756
self.FMIDBOT = 0.1
5857
self.FLOWCAP = 0.0

0 commit comments

Comments
 (0)