This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 09c4be2
Showing
18 changed files
with
2,186 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
cmake_minimum_required(VERSION 2.6) | ||
project(cmp) | ||
|
||
add_definitions(-std=gnu99 | ||
-D_FILE_OFFSET_BITS=64 | ||
-D_LARGEFILE64_SOURCE) | ||
|
||
if (WITH_OPENMP) | ||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}") | ||
endif() | ||
|
||
set(WITH_OPENMP True CACHE BOOL "True to enable OpenMP") | ||
|
||
if (WITH_OPENMP) | ||
find_package(OpenMP) | ||
if (NOT OPENMP_FOUND) | ||
set(WITH_OPENMP False) | ||
endif() | ||
endif() | ||
|
||
include_directories(${CMAKE_SOURCE_DIR}) | ||
|
||
add_executable(cmp | ||
cmp.c | ||
gather.c | ||
semblance.c | ||
interpol.c | ||
log.c | ||
su.c) | ||
|
||
target_link_libraries(cmp m) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Common Mid Point | ||
|
||
This is a toy program that estimates the _best_ velocity parameter for each | ||
seismic session point, using a "brute force" algorithm. Notion of _best_ is | ||
given by the _semblance_ correlation function (see below). | ||
|
||
# Building & Testing | ||
|
||
You will need CMake to compile this program. To build, execute the following | ||
|
||
mkdir build | ||
cd build | ||
cmake .. | ||
make | ||
|
||
To test the program, you will need a prestack file in the SU file format. Edit | ||
the script `test-cmp.sh` to point to your seismic file and execute it to test | ||
the program. | ||
|
||
# License | ||
|
||
This software is licensed as GPL version 2. It also makes use of the [UT Hash | ||
library](https://troydhanson.github.io/uthash/), which is BSD Revised. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
/* | ||
* Copyright 2014-2015 Ian Liu Rodrigues <[email protected]> | ||
* | ||
* This file is part of CMP. | ||
* | ||
* CMP is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* CMP is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with CMP. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <float.h> | ||
#include <math.h> | ||
#include <vector.h> | ||
#include <uthash.h> | ||
#include <interpol.h> | ||
#include <semblance.h> | ||
#include <log.h> | ||
#include <su.h> | ||
|
||
struct cdp_traces { | ||
int cdp; | ||
vector_t(su_trace_t) traces; | ||
UT_hash_handle hh; | ||
}; | ||
|
||
float getmax_C(aperture_t *ap, int t0s, float c0, float c1, int nc, float *sem, float *stack) | ||
{ | ||
float Copt; | ||
float smax = 0; | ||
float _stack = 0; | ||
for (int i = 0; i < nc; i++) { | ||
float C = c0 + (c1 - c0) * i / nc; | ||
float m0x, m0y; | ||
su_get_midpoint(ap->traces.a[0], &m0x, &m0y); | ||
float s = semblance_2d(ap, 0, 0, C, t0s, m0x, m0y, &_stack); | ||
if (s > smax) { | ||
smax = s; | ||
Copt = C; | ||
*stack = _stack; | ||
} | ||
} | ||
if (sem) | ||
*sem = smax; | ||
return Copt; | ||
} | ||
|
||
int main(int argc, char *argv[]) | ||
{ | ||
if (argc != 9) { | ||
fprintf(stderr, "Usage: %s C0 C1 NC APH TAU INPUT CDP0 CDP1\n", argv[0]); | ||
exit(1); | ||
} | ||
|
||
float c0 = atof(argv[1]); | ||
float c1 = atof(argv[2]); | ||
int nc = atoi(argv[3]); | ||
int aph = atoi(argv[4]); | ||
float tau = strtof(argv[5], NULL); | ||
char *path = argv[6]; | ||
int cdp0 = atoi(argv[7]); | ||
int cdp1 = atoi(argv[8]); | ||
FILE *fp = fopen(path, "r"); | ||
|
||
su_trace_t tr; | ||
struct cdp_traces *cdp_traces = NULL; | ||
while (su_fgettr(fp, &tr)) { | ||
float hx, hy; | ||
su_get_halfoffset(&tr, &hx, &hy); | ||
if (hx*hx + hy*hy > aph*aph) | ||
continue; | ||
int cdp = tr.cdp; | ||
struct cdp_traces *val; | ||
HASH_FIND_INT(cdp_traces, &cdp, val); | ||
if (!val) { | ||
val = malloc(sizeof(struct cdp_traces)); | ||
val->cdp = cdp; | ||
vector_init(val->traces); | ||
HASH_ADD_INT(cdp_traces, cdp, val); | ||
} | ||
vector_push(val->traces, tr); | ||
} | ||
|
||
FILE *C_out = fopen("c.su", "w"); | ||
FILE *S_out = fopen("cmp.coher.su", "w"); | ||
FILE *stack = fopen("cmp.stack.su", "w"); | ||
float progress_max = 1.0f / (HASH_COUNT(cdp_traces) - 1); | ||
int k = 0; | ||
|
||
struct cdp_traces *iter; | ||
for (iter = cdp_traces; iter; iter = iter->hh.next) { | ||
if (iter->cdp < cdp0 || iter->cdp > cdp1) | ||
continue; | ||
su_trace_t *trs = iter->traces.a; | ||
su_trace_t ctr, str, stacktr; | ||
|
||
memcpy(&ctr, &trs[0], SU_HEADER_SIZE); | ||
ctr.offset = 0; | ||
ctr.sx = ctr.gx = (trs[0].sx + trs[0].gx) / 2; | ||
ctr.sy = ctr.gy = (trs[0].sy + trs[0].gy) / 2; | ||
|
||
memcpy(&str, &ctr, SU_HEADER_SIZE); | ||
memcpy(&stacktr, &ctr, SU_HEADER_SIZE); | ||
su_init(&ctr); | ||
su_init(&str); | ||
su_init(&stacktr); | ||
|
||
aperture_t ap; | ||
ap.ap_m = 0; | ||
ap.ap_h = aph; | ||
ap.ap_t = tau; | ||
vector_init(ap.traces); | ||
for (int i = 0; i < iter->traces.len; i++) | ||
vector_push(ap.traces, &vector_get(iter->traces, i)); | ||
|
||
#pragma omp parallel for | ||
for (int t0 = 0; t0 < trs[0].ns; t0++) { | ||
float sem, stk; | ||
float C = getmax_C(&ap, t0, c0, c1, nc, &sem, &stk); | ||
ctr.data[t0] = C; | ||
str.data[t0] = sem; | ||
stacktr.data[t0] = stk; | ||
} | ||
su_fputtr(C_out, &ctr); | ||
su_fputtr(S_out, &str); | ||
su_fputtr(stack, &stacktr); | ||
log_progress(++k * progress_max, "Processing CDP %d", ctr.cdp); | ||
} | ||
printf("\n"); | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Copyright 2014-2015 Ian Liu Rodrigues <[email protected]> | ||
* | ||
* This file is part of CMP. | ||
* | ||
* CMP is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* CMP is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with CMP. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include "gather.h" | ||
|
||
#include <utils.h> | ||
|
||
void gather_get_traces_for_aperture(int *m0s, | ||
su_trace_t *traces, int ntr, | ||
aperture_t *ap) | ||
{ | ||
vector_init(ap->traces); | ||
float x0, y0; | ||
float x, y; | ||
su_get_receiver(&traces[*m0s], &x0, &y0); | ||
su_get_receiver(traces, &x, &y); | ||
float dist = SQR(x0 - x) + SQR(y0 - y); | ||
while (ntr-- && dist > SQR(ap->ap_m)) { | ||
traces++; | ||
su_get_receiver(traces, &x, &y); | ||
dist = SQR(x0 - x) + SQR(y0 - y); | ||
(*m0s)--; | ||
} | ||
ntr++; | ||
if (ntr == 0) | ||
return; | ||
while (ntr-- && dist <= SQR(ap->ap_m)) { | ||
vector_push(ap->traces, traces); | ||
traces++; | ||
su_get_receiver(traces, &x, &y); | ||
dist = SQR(x0 - x) + SQR(y0 - y); | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright 2014-2015 Ian Liu Rodrigues <[email protected]> | ||
* | ||
* This file is part of CMP. | ||
* | ||
* CMP is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* CMP is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with CMP. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef GATHER_H__ | ||
#define GATHER_H__ | ||
|
||
#include <su.h> | ||
#include <semblance.h> | ||
|
||
void gather_get_traces_for_aperture(int *m0s, | ||
su_trace_t *traces, int ntr, | ||
aperture_t *ap); | ||
|
||
#endif /* GATHER_H__ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Copyright 2014-2015 Ian Liu Rodrigues <[email protected]> | ||
* | ||
* This file is part of CMP. | ||
* | ||
* CMP is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* CMP is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with CMP. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include "interpol.h" | ||
|
||
float interpol_linear(float x0, float x1, float y0, float y1, float x) | ||
{ | ||
return (y1 - y0) * (x - x0) / (x1 - x0) + y0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Copyright 2014-2015 Ian Liu Rodrigues <[email protected]> | ||
* | ||
* This file is part of CMP. | ||
* | ||
* CMP is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* CMP is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with CMP. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef INTERPOL_H_ | ||
#define INTERPOL_H_ | ||
|
||
float interpol_linear(float x0, float x1, float y0, float y1, float x); | ||
|
||
#endif /* INTERPOL_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* Copyright 2014-2015 Ian Liu Rodrigues <[email protected]> | ||
* | ||
* This file is part of CMP. | ||
* | ||
* CMP is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* CMP is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with CMP. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include "log.h" | ||
|
||
#include <stdio.h> | ||
#include <stdarg.h> | ||
|
||
void log_progress(float percentage, const char *fmt, ...) | ||
{ | ||
va_list ap; | ||
va_start(ap, fmt); | ||
printf("[%3d%%] ", (int)(percentage * 100)); | ||
vprintf(fmt, ap); | ||
printf("\033[0K\r"); | ||
fflush(stdout); | ||
va_end(ap); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Copyright 2014-2015 Ian Liu Rodrigues <[email protected]> | ||
* | ||
* This file is part of CMP. | ||
* | ||
* CMP is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* CMP is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with CMP. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef LOG_H__ | ||
#define LOG_H__ | ||
|
||
void log_progress(float percentage, const char *fmt, ...); | ||
|
||
#endif /* LOG_H__ */ |
Oops, something went wrong.