unif2.1

来自「su 的源代码库」· 1 代码 · 共 20 行

1
20
字号
#! /bin/sh# shell for uniformly sampling velocity from a layered modelset -v# building velocity model for ray tracingnz=51 dz=50 fz=.0  labelz="Depth (m)"nx=81 dx=50 fx=0.0  labelx="Distance (m)"ninf=0 npmax=201 unif2 <input >vfile  ninf=$ninf  npmax=$npmax \	nz=$nz dz=$dz fz=$fz nx=$nx dx=$dx fx=$fx \	v00=1880# building velocity derivative model for ray tracingunif2 <input >pvfile  ninf=$ninf  npmax=$npmax \	nz=$nz dz=$dz fz=$fz nx=$nx dx=$dx fx=$fx \	v00=1 exit 0

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?