Skip to content

Commit

Permalink
fixed issue with computation of true spectra.
Browse files Browse the repository at this point in the history
  • Loading branch information
millen1m committed May 14, 2018
1 parent 59f0f41 commit 3386ffc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eqsig/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.15"
__version__ = "0.5.16"
2 changes: 1 addition & 1 deletion eqsig/duhamels.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def true_response_spectra(motion, step, periods, xi):
:param xi: float, fraction of critical damping (e.g. 0.05)
:return: tuple floats, (spectral displacement, spectral velocity, spectral acceleration)
"""
resp_a, resp_v, resp_u = nigam_and_jennings_response(motion, periods, step, xi)
resp_u, resp_v, resp_a = nigam_and_jennings_response(motion, periods, step, xi)
sas = absmax(resp_a, axis=1)
svs = absmax(resp_v, axis=1)
sds = absmax(resp_u, axis=1)
Expand Down

0 comments on commit 3386ffc

Please sign in to comment.