├── .gitignore ├── 2D_elastic_RTM ├── elastic_2D_kernel_2.cu ├── elastic_2D_kernel_3.cu ├── viscoelastic_equation.cu └── zzzzz ├── 3D_elastic_RTM ├── 3D_elastic_modeling_parameter ├── 3D_elastic_modeling_parameter_sh ├── 3D_elastic_modeling_typedef_struct ├── 3D_forward_or_back_together.cu ├── 3D_output_file.cu ├── 3D_zzzzz ├── log_old.txt ├── makefile ├── smooth_3d └── zzzzz └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeophysicsLab/2D_and_3D_elastic_reverse_time_migration/HEAD/.gitignore -------------------------------------------------------------------------------- /2D_elastic_RTM/elastic_2D_kernel_2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeophysicsLab/2D_and_3D_elastic_reverse_time_migration/HEAD/2D_elastic_RTM/elastic_2D_kernel_2.cu -------------------------------------------------------------------------------- /2D_elastic_RTM/elastic_2D_kernel_3.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeophysicsLab/2D_and_3D_elastic_reverse_time_migration/HEAD/2D_elastic_RTM/elastic_2D_kernel_3.cu -------------------------------------------------------------------------------- /2D_elastic_RTM/viscoelastic_equation.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeophysicsLab/2D_and_3D_elastic_reverse_time_migration/HEAD/2D_elastic_RTM/viscoelastic_equation.cu -------------------------------------------------------------------------------- /2D_elastic_RTM/zzzzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeophysicsLab/2D_and_3D_elastic_reverse_time_migration/HEAD/2D_elastic_RTM/zzzzz -------------------------------------------------------------------------------- /3D_elastic_RTM/3D_elastic_modeling_parameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeophysicsLab/2D_and_3D_elastic_reverse_time_migration/HEAD/3D_elastic_RTM/3D_elastic_modeling_parameter -------------------------------------------------------------------------------- /3D_elastic_RTM/3D_elastic_modeling_parameter_sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeophysicsLab/2D_and_3D_elastic_reverse_time_migration/HEAD/3D_elastic_RTM/3D_elastic_modeling_parameter_sh -------------------------------------------------------------------------------- /3D_elastic_RTM/3D_elastic_modeling_typedef_struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeophysicsLab/2D_and_3D_elastic_reverse_time_migration/HEAD/3D_elastic_RTM/3D_elastic_modeling_typedef_struct -------------------------------------------------------------------------------- /3D_elastic_RTM/3D_forward_or_back_together.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeophysicsLab/2D_and_3D_elastic_reverse_time_migration/HEAD/3D_elastic_RTM/3D_forward_or_back_together.cu -------------------------------------------------------------------------------- /3D_elastic_RTM/3D_output_file.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeophysicsLab/2D_and_3D_elastic_reverse_time_migration/HEAD/3D_elastic_RTM/3D_output_file.cu -------------------------------------------------------------------------------- /3D_elastic_RTM/3D_zzzzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeophysicsLab/2D_and_3D_elastic_reverse_time_migration/HEAD/3D_elastic_RTM/3D_zzzzz -------------------------------------------------------------------------------- /3D_elastic_RTM/log_old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeophysicsLab/2D_and_3D_elastic_reverse_time_migration/HEAD/3D_elastic_RTM/log_old.txt -------------------------------------------------------------------------------- /3D_elastic_RTM/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeophysicsLab/2D_and_3D_elastic_reverse_time_migration/HEAD/3D_elastic_RTM/makefile -------------------------------------------------------------------------------- /3D_elastic_RTM/smooth_3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeophysicsLab/2D_and_3D_elastic_reverse_time_migration/HEAD/3D_elastic_RTM/smooth_3d -------------------------------------------------------------------------------- /3D_elastic_RTM/zzzzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeophysicsLab/2D_and_3D_elastic_reverse_time_migration/HEAD/3D_elastic_RTM/zzzzz -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeophysicsLab/2D_and_3D_elastic_reverse_time_migration/HEAD/README.md --------------------------------------------------------------------------------