📄 slantstackmig
字号:
#!/bin/sh#Input CMP gather with only positive offsetsfile1="shot_dat1.su"#taup transform parameterspmin=0pmax=0.002np=101dx=12.5 #Separation between adjacent traces on a CMP gather (m)cmps=601 #Number of CMPscmpd2=0.0125 #distance between adjacent CMP locations (km)#Formation of constant ray parameter sectionssuwind < $file1 key=cdp min=1 max=1 | sutaup dx=$dx pmin=$pmin pmax=$pmax np=$np | sushw key=ep a=0 b=1 > temp1.suC=2while [ "$C" -le "$cmps" ]do suwind <shot_dat1.su key=cdp min=$C max=$C | sutaup dx=$dx pmin=$pmin pmax=$pmax np=$np | sushw key=ep a=0 b=1 > temp.su cat temp1.su temp.su > temp2.su cp temp2.su temp1.su C=`expr $C + 1`donesusort < temp1.su > unmig.psecs.su ep cdp#Set the header for the separation between adjacent CMP locationssushw < unmig.psecs.su key=d2 a=$cmpd2 > temp3.su#Migrate each of the constant ray parameter sectionssuwind < temp3.su key=ep min=0 max=0 | sumigps tmig=0,1.022 vmig=1.5,2.5 > temp1.suC=1while [ "$C" -lt "$np" ]do suwind < temp3.su key=ep min=$C max=$C | sumigps tmig=0,1.022 vmig=1.5,2.5 > temp.su cat temp1.su temp.su > temp2.su cp temp2.su temp1.su C=`expr $C + 1`done#Stack all the migrated sections to obtain the final migrated imagesusort < temp1.su cdp ep | sustack key=cdp > slntstkmig.surm -f temp*rm -f unmig.psecs.susuximage < slntstkmig.su &exit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -