tbenthompson / cutde

Python CPU and GPU accelerated TDEs, over 100 million TDEs per second!
MIT License
58 stars 15 forks source link

module 'cutde' has no attribute 'disp_matrix' #34

Closed mehranbasmenji1 closed 9 months ago

mehranbasmenji1 commented 9 months ago

Hi all, I am trying to run the following code: disp_mat = cutde.disp_matrix(obs_pts=pts, tris=fault_pts[fault_tris], nu=0.25)

But I get this error : AttributeError: module 'cutde' has no attribute 'disp_matrix'

Please let me know what you think. Cheers, Mehran

mehranbasmenji1 commented 9 months ago

I changed it as import cutde.fullspace as FS disp_mat = FS.disp_matrix(obs_pts=pts, tris=fault_pts[fault_tris], nu=0.25)