heaventian的个人博客分享 http://blog.sciencenet.cn/u/heaventian 那和谐的力量,深沉的欢乐的力量,使目光变得沉静,洞悉世间万物的内在

博文

岩石圈内温度异常的简单计算公式

已有 3984 次阅读 2014-8-9 06:48 |个人分类:物理地质|系统分类:科研笔记

下面小程序计算岩石圈内的温度异常(相对于古老的稳定岩石圈,如craton而言,程序说明参见Chappell and Kusznir, 2008):

clear
Myr=1e6*365.25*24*3600;% Unit s
a=125e3;%depth of the lithospheric plate thickness (plate model), unit m
z=0:1e3:a;% depth, unit m
gama=1.5;    % streching factor
T1=1060;    % Tm-T0 (mantle temperature - surface temperature), unit: K
tao=62.8*Myr;    % lithosphere cooling thermal decay constant
t=200*Myr;    % age of a profile considered


tmp2=0;
for n=1:30
   tmp1_1=(-1)^(n+1)/n;
   tmp1_2=gama/n/pi*sin(n*pi/gama);
   tmp1_3=exp(-n^2*t/tao)*sin(n*pi*z/a);
   tmp2=tmp1_1*tmp1_2*tmp1_3+tmp2;
end
T=T1*[2/pi*tmp2];% temperature anomaly in relative to very old lithosphere
plot(T,z/1e3)
set(gca,'ydir','reverse')
xlabel('Temperature anomaly (K)')
ylabel('Depth (km)')


结果见下图:

图中,蓝色,黑色,红色,绿色线分别代表该采样剖面的地壳年龄为0, 10, 50 和200个Ma。



https://blog.sciencenet.cn/blog-363773-818217.html

上一篇:动力地形-拿不确定的模型预测和不确定的观测做比较
下一篇:对地幔对流和板块构造的一些理解
收藏 IP: 131.215.74.*| 热度|

0

该博文允许注册用户评论 请点击登录 评论 (0 个评论)

数据加载中...

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-9-27 10:41

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部