Skip to content
Open
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
6 changes: 3 additions & 3 deletions MOMENT_DISP_F90_OPENMP/src/axitra.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,11 +470,11 @@ def conv(self, ap, hist, source_type, t0, t1=0., unit=1, sfunc=None):
'''

try:
import convfPy
import convmPy
except:
import sys
sys.path.append(ap.axpath)
import convfPy
import convmPy
import os

#check if axi_??.data files exists
Expand Down Expand Up @@ -515,7 +515,7 @@ def conv(self, ap, hist, source_type, t0, t1=0., unit=1, sfunc=None):


# run convolution
convfPy.force_conv(ap.id, source_type, t0, t1, unit, sismox, sismoy, sismoz)
convmPy.moment_conv(ap.id, source_type, t0, t1, unit, sismox, sismoy, sismoz)

# create time vector
dt = ap.duration/ap.npt
Expand Down