Skip to content

Commit 25136ea

Browse files
committed
Use the new program rnip2vmrs to estimate VRMS #54
Cut the RNIP vector from parameters cube and use it to estimate the VRMS velocity for each pair (t0,m0) in the stacked section. Use the new program 'sfrnip2vrms'.
1 parent 383aa5f commit 25136ea

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

experiments/fullInterpolationAndStack/SConstruct

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,16 @@ Flow('parametersCube',parametersCubeForM0List,
176176
put label2=t0 unit2=s label3=m0 unit3=Km d2=%g o2=%g d3=%g o3=%g
177177
''' % (len(parametersCubeForM0List),dt0,ot0,dm0,om0))
178178

179+
# Cut only RNIP vector from parameters cube
180+
Flow('rnip','parametersCube',
181+
'''
182+
window n1=1 f1=1 |
183+
put n1=%i n2=1 n3=1
184+
''' % (nt0*nm0))
185+
186+
# Estimate VRMS from RNIP using multifocus formula
187+
Flow('vrms','stackedSection rnip',
188+
'''
189+
rnip2vrms rnip=${SOURCES[1]} verb=y
190+
''')
179191
End()

0 commit comments

Comments
 (0)