资源简介
井中地震数据处理。利用测井曲线和反射率方法进行角度集地震记录正演
代码片段和文件信息
%% ------------------------------------------------------------ %%
% DAQING Well logs plotting 1-3-30
%
% - Written by Zhiqi Guo on 05 April 2012
% - during Marathon Shale Gas projects in Ediburgh Anisotropy Project (EAP)
% ----------------------------------------------------------------------- %
%% ------------------------------------------------------------ %%
clc;
close all;
clear all;
%% ------------------------------------------------------------ %%
%--------------------- 1-Setting and data loading ------------------------%
well = load(‘data\WEL1-3-30.txt‘); % well
% well = importdata(‘input_well_jiaoye1_forBackus.txt‘);
n = 6;
LineWidth = 2;
FontSize = 12;
AspectRatio_1 = 4/1;
target_well = 1:1913;
% target_well = 2242:3522;
depth_range = length(target_well);
interval = 1;
sampling = 1:interval:depth_range; % interval = 1 for 0.125m;
% interval = 8 for 1m;
depth_well = well(target_well(sampling)1);
DT_well = well(target_well(sampling)2);
GR_well = well(target_well(sampling)3);
LLD_well = well(target_well(sampling)4);
NPHI_well = well(target_well(sampling)5);
RHOB_well = well(target_well(sampling)6);
SP_well = well(target_well(sampling)7);
% depth_well = well.data(target_well(sampling)1);
% vp_well = well.data(target_well(sampling)3);
% GR_well = well.data(target_well(sampling)2);
% vs_well = well.data(target_well(sampling)4);
% rho_well = well.data(target_well(sampling)5);
vp_well = 1e3*0.3048./well(target_well(sampling)2); % from DT to Vp
vs_well = 0.79*vp_well-0.79; % Vs from Vp
rho_well = RHOB_well;
% -- from depth to time using Vp
time_well = zeros(1length(rho_well));
time_well(1) = 2*0.125/(vp_well(1));
for ii = 2:1:length(rho_well)
time_well(ii) = time_well(ii-1) + 2*0.125/(vp_well(ii));
end
% -- Ip and Rpp
Ip = vp_well.*rho_well;
Ip(length(Ip)+1) = Ip(length(Ip));
RefleCoeff = zeros(1length(rho_well));
for ii = 1:1:length(rho_well)
RefleCoeff(ii) = (Ip(ii+1) - Ip(ii)) / (Ip(ii+1) + Ip(ii));
end
% -- Media filter
interval_medfilt = 1;
GR_well_medfilt = medfilt1(GR_wellinterval_medfilt);
vp_well_medfilt = medfilt1(vp_wellinterval_medfilt);
vs_well_medfilt = medfilt1(vs_wellinterval_medfilt);
rho_well_medfilt = medfilt1(rho_wellinterval_medfilt);
RefleCoeff_medfilt = medfilt1(RefleCoeffinterval_medfilt); - 上一篇:拉盖尔高斯模式
- 下一篇:matlab六自由度弹道仿真.zip
相关资源
- 串行级联cpm系统MATLAB仿真
- matlab_OFDM调制解调(来自剑桥大学)
- Matlab路面裂缝识别69319
- 高灵敏度GPS接收机MATLAB仿真,附捕获
- 基于MATLAB的质点弹道计算与外弹道优
- 阵列天线的matlab仿真
- MATLAB 经典程序源代码大全
- MATLAB小波软阈值去噪代码33473
- 天线阵的波束形成在MATLAB仿真程序及
- 非线性SVM算法-matlab实现
- 《MATLAB 智能算法超级学习手册》-程序
- 组合导航matlab程序
- 读取txt文件内容matlab代码实现
- Matlab实现基于相关的模板匹配程序
- matlab优化工具箱讲解
- 基于MATLAB的快速傅里叶变换
- 光纤传输中的分布傅立叶算法matlab实
- 基于matlab的图像处理源程序
- matlab 椭圆拟合程序
- 算术编码解码matlab源代码
- optical_flow 光流法 matlab 实现程序
- 引导图像滤波器 Matlab实现
- 分形几何中一些经典图形的Matlab画法
- OFDM系统MATLAB仿真代码
- SVM工具箱(matlab中运行)
- 图像小波变换MatLab源代码
- LU分解的MATLAB实现
- 冈萨雷斯数字图像处理matlab版(第三
- 替代数据法的matlab程序
- 用matlab实现的多站定位系统性能仿真
川公网安备 51152502000135号
评论
共有 条评论