球体重力异常正演程序报告_第1页
球体重力异常正演程序报告_第2页
球体重力异常正演程序报告_第3页
球体重力异常正演程序报告_第4页
球体重力异常正演程序报告_第5页
已阅读5页,还剩1页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、应用地球物理学课程作业基于MATLAB的球体重力正演程序实验报告1一 程序简介本程序基于MATLAB软件的GUI模块编写,旨在实现球体重力正演结果的可视化分析。MATLAB是一个高级的编程语言,其矩阵思想方便了地球物理的编程工作。随着该语言和相应软件的发展,其内部也集成了许多模块,如该实验用到的GUI模块。在该模块中,可以通过窗口、按键和赋值框等基本元素的组合,编写出可视化的应用程序,再配合MATLAB强大的作图功能,可以实现正演结果的展示与分析。该程序应包含以下内容:1. 可以自由输入参数,如球体半径,埋深和剩余密度。2. 可以计算出g、VZZ、VXZ和VZZZ这四种重力异常及其导数的对应值

2、。3. 可以绘制剖面图及平面图两种图像。二 源程序由于GUI程序的头文件均大同小异,这里只列出赋值框及绘图按键的程序代码。% - Executes on selection change in popupmenu1.function popupmenu1_Callback(hObject, eventdata, handles)% hObject handle to popupmenu1 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with han

3、dles and user data (see GUIDATA) % Hints: contents = cellstr(get(hObject,'String') returns popupmenu1 contents as cell array% contentsget(hObject,'Value') returns selected item from popupmenu1s=get(hObject,'value');handles.s = s;guidata(hObject, handles);function edit1_Callba

4、ck(hObject, eventdata, handles)% hObject handle to edit1 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA) % Hints: get(hObject,'String') returns contents of edit1 as text% str2double(get(hObject,'Stri

5、ng') returns contents of edit1 as a doubled = str2double(get(hObject,'string');handles.d = d;guidata(hObject, handles);function edit2_Callback(hObject, eventdata, handles)% hObject handle to edit2 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles struc

6、ture with handles and user data (see GUIDATA) % Hints: get(hObject,'String') returns contents of edit2 as text% str2double(get(hObject,'String') returns contents of edit2 as a doubler = str2double(get(hObject,'string');handles.r = r;guidata(hObject, handles);function edit3_Ca

7、llback(hObject, eventdata, handles)% hObject handle to edit3 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA) % Hints: get(hObject,'String') returns contents of edit3 as text% str2double(get(hObject,'

8、String') returns contents of edit3 as a doublero = str2double(get(hObject,'string');handles.ro = ro;guidata(hObject, handles);% - Executes on button press in pushbutton1.function pushbutton1_Callback(hObject, eventdata, handles)% hObject handle to pushbutton1 (see GCBO)% eventdata reserv

9、ed - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA) ro = handles.ro;r = handles.r;d = handles.d;x=-2*d:2*d;G=6.67e-11;pi=3.14159;switch handles.s case 2 z=4*ro*pi*G*r3*d./(3*(x.2+d2).1.5); plot(x,z.*1e6);xlabel('X/m');ylabel('Delta

10、g/g.u.'); case 3 z=4*ro*pi*G*r3*(2*d2-x.2)./(3*(x.2+d2).2.5); plot(x,z.*1e9);xlabel('X/m');ylabel('Vzz/E'); case 4 z=-4*ro*pi*G*r3*(d.*x)./(x.2+d2).2.5; plot(x,z.*1e9);xlabel('X/m');ylabel('Vxz/E'); case 5 z=4*ro*pi*G*r3*(2*d2-3.*x.2)./(x.2+d2).3.5; plot(x,z.*1e9)

11、;xlabel('X/m');ylabel('Vzzz/nMKS');end% - Executes on button press in pushbutton3.function pushbutton3_Callback(hObject, eventdata, handles)% hObject handle to pushbutton3 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and

12、 user data (see GUIDATA)ro = handles.ro;r = handles.r;d = handles.d;x=-2*d:2*d;y=-2*d:2*d;X,Y=meshgrid(x,y);G=6.67e-11;pi=3.14159;switch handles.s case 2 c=4*ro*pi*G*r3*d./(3*(X.2+Y.2+d2).1.5); contour(X,Y,c.*1e6,'showtext','on');colormap(winter);xlabel('X/m');ylabel('Y/m

13、'); case 3 c=4*ro*pi*G*r3*(2*d2-X.2-Y.2)./(3*(X.2+Y.2+d2).2.5); contour(X,Y,c.*1e9,'showtext','on');colormap(winter);xlabel('X/m');ylabel('Y/m'); case 4 c=-4*ro*pi*G*r3*(d.*X.*Y)./(X.2+Y.2+d2).2.5; contour(X,Y,c.*1e9,'showtext','on');colormap(winter);xlabel('X/m');ylabel('Y/m'); case 5 c=4*ro*pi*G*r3*(2*d2-3.*X.2-Y.2)./(X.2+Y.2+d2).3.5;

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论