Skip to content

Commit 51a890c

Browse files
committed
comparison between traveltime surfaces
Compare modeled traveltime surface with Non-hyperbolic CRS approximated surface, using the parameters RN, RNIP and BETA obtained in the VFSA global optimization step.
1 parent 4351294 commit 51a890c

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

experiments/vfsacrenh/SConstruct

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,21 +66,34 @@ Flow('crsParameters','dataCube',
6666

6767
# Aproximation Error
6868
Flow('dataReflectionSurface','dataCube','envelope | max1 | window n1=1 | real')
69+
Plot('dataReflectionSurface',
70+
'''
71+
grey color=j bias=2 scalebar=y barlabel=Time barunit=s barreverse=y
72+
title="Modeled traveltime surface" label1=Half-Offset unit1=km label2=Midpoint unit2=km
73+
''')
6974
Flow('crsAppSurface',['dataReflectionSurface','crsParameters'],
7075
'''
7176
nhcrssurf param=${SOURCES[1]} m0=%g v0=%g t0=%g verb=y
7277
''' % (m0,v0,t0))
78+
Plot('crsAppSurface',
79+
'''
80+
grey color=j bias=2 scalebar=y barlabel=Time barunit=s barreverse=y
81+
title="Non-hyperbolic CRS m0=5Km" label1=Half-Offset unit1=km label2=Midpoint unit2=km
82+
''')
7383

7484
Flow('error',['crsAppSurface','dataReflectionSurface'],
7585
'''
7686
add scale=1,-1 ${SOURCES[1]} |
7787
math output="abs(input)"
7888
''')
79-
80-
Result('error',
89+
Plot('error',
8190
'''
82-
grey color=j bias=2 scalebar=y barlabel=Time barunit=s barreverse=y title="Error CMP Gather 5Km" label1=Half-Offset unit1=km label2=Midpoint unit2=km
91+
grey color=j bias=2 scalebar=y barlabel=Time barunit=s barreverse=y
92+
title="Approximation error" label1=Half-Offset unit1=km label2=Midpoint unit2=km
93+
maxval=1 minval=0
8394
''')
8495

96+
Result('errorAndCRSSurfaces',['dataReflectionSurface','crsAppSurface','error'],'SideBySideAniso')
97+
8598
End()
8699

0 commit comments

Comments
 (0)