Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the python wrapper of the moment version #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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