Skip to content
Snippets Groups Projects
Commit 42dc69cd authored by Evan Hall's avatar Evan Hall
Browse files

Blend T -> Blend R for 6D seismo

parent 539c9311
No related branches found
No related tags found
1 merge request!56atmois dhdL
......@@ -87,7 +87,7 @@ def seis6D(f):
nr_self = 10**(interp1d(SEI_F, log10(SEI_R_self))(f))
nr_gnd = np.abs(1e-7/(1+1j*f/0.001))
blend_r = np.abs(100/(1+1j*f/0.01)**4)
nr = np.sqrt(nr_self**2 + (blend_t * nr_gnd)**2)
nr = np.sqrt(nr_self**2 + (blend_r * nr_gnd)**2)
return nt, nr
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment