压力传递-centroid effects(质心效应)

Zeng @July 18th, 2010 >> Views(602) | Reply (0) 

位于致密地层(如泥岩)中的渗透性透镜体(如砂体),由于压力传递的质心效应(centroid effect),其上倾部分(A)的压力比正常地层压力高,形成超压;而下倾部分(C),则比相应的地层压力低,形成低压;中部与地层压力相交的地方,即为质心(centroid)。质心效应表明,地层超压有时并不是压实不平衡造成的。

image

image

References:

[1]    England W A, Mackenzie A S, Mnn D M, Quigley T M. The movement and entrapment of petroleum fluids in the subsurface [J]. Journal of the Geological Society, 1987, 144(2): 327-347.

水在烃源岩生烃中的作用

Zeng @May 16th, 2010 >> Views(399) | Reply (0) 

  在高压釜中加热水淹的烃源岩样品,即加水热模拟实验(hydrous pyrolysis),反应后在水中可收集到与地下原油相似的产物。根据Lewan(1993)的实验,加水热模拟实验过程中,样品的干酪根含量逐渐降低,伴随着排油量的增大,并在350℃左右排油量达到最大,此后由于油裂解,排油量降低。与排油量对应的是残留在源岩中的沥青抽提物,沥青抽提物的含量与排油量变化趋势相同,也是先增大后减小,不过沥青抽提物的峰值先于排油量到达,在330℃左右,一般解释为干酪根先生成沥青然后生成石油(注意:沥青抽提物,如氯仿沥青“A”,与沥青的区别),其中沥青是中间产物。与源岩无水热模拟实验相比,加水热模拟实验表明,源岩的生烃在较低的温度下即可进行(无水热模拟实验一般需要500℃左右),而且可以得到类似地下原油的产物。

    水在烃源岩中是普遍存在的,水对源岩的生排烃的作用不容忽视。那么水在源岩的生烃中到底起什么作用呢?Lewan(1997)的研究结果表明,水在干酪根转换成沥青的过程中(首先断开弱化学键)作用不明显,但对于沥青进一步转换成石油(断开共价键,形成自由基)却是重要的因素。在无水条件下,沥青主要发生交联作用,生成焦沥青(pyrobitumen);而有水条件下,沥青主要发生裂解作用,生成饱和烃。Schimmelmann(1999,2001)等通过重水(D2O)示踪研究加水热模拟实验中氘的流向进而研究水的作用机理,结果表明烃源岩加水生烃过程中,普遍存在水的氢转换成有机质中的氢。这种转换程度与源岩的渗透率及源岩颗粒大小有关;渗透率越大,颗粒越小,水与源岩的接触面积越大,这种转化程度也越高。相对其它有机质类型,Ⅰ型干酪根主要为烷基链,不易形成自由基,因此Ⅰ型有机质生成的油中含有的来自水的氢的含量最低,其余几种类型有机质生成的石油中的来自水的氢的比例依次增加:Ⅱ≈Ⅲ>ⅡS。

    启示:水中的氢在生烃过程中可以转换成有机氢,因此,对于一些贫氢的有机质的生烃作用,我们可能需要重新审视。

主要参考文献:

[1]Arndt Schimmelmann, Jean-Paul Boudou, M.D Lewan and etc. (2001) Experimental controls on D/H and 13C/12C ratios of kerogen bitumen and oil during hydrous pyrolysis.Org Geochem, 32(8):1009-1018.

[2]M.D Lewan. (1993)Laboratory simulation of petroleum formation: hydrous pyrolysis. Org Geochem, New York 1993,419-442.

[3]M.D Lewan. (1997)Experiments on the role of water in petroleum formation. Geochimica et Cosmochimica Acta, 61(17), 3691-3723.

原写于:http://blog.5d.cn/user2/skyline-moon/200907/521385.html

Excel整理数据时常用的几个方法及函数

Zeng @May 12th, 2010 >> Views(340) | Reply (0) 

Excel整理数据时常用的几个方法及函数

  1. 去掉一列中重复的记录:
    在该列(比如第一列)的右侧的第一个单元格写: =if(A2=A1,”重复”,”"),移动鼠标到该单元格的右下角,鼠标变成”黑十字”时,双击。然后用自动筛选的方法,把所有有”重复”字样的行删除。
  2. =vlookup(查找的值,查找的范围,返回第几列的数,false)
    false 表示精确匹配,true为模糊匹配
    如=vlookup(g1,A:B,2,false) 表示在A,B两列中查找单元格g1中的值,返回B列中对应(同一行)的值
  3. 同一样品多次记录求平均值
    分为两步:第一步先把样品号拷出来,去掉重复的样品号;第二步在没有重复的样品号旁边编写公式:=sumif(左侧的样品号,原来样品号所在的列,要求和的记录所在的列)/countif(左侧的样品号,原来样品号所在的列)
    如:sumif(E1,A:A,B:B)/countif(E1,A:A)
  4. 菜单:数据|分列
    用于整理从文本文件拷进来的数据
  5. 菜单 数据|筛选
    可以自动或自定义筛选出符合一定条件的数据
  6. Excel 公式中的绝对引用与相对引用
    如引用的单元格写成 A1 表示相对引用,这时如果把该公式拖到比如第二行,则公式中的A1会自动变成A2;而如果拖到相邻的单元格,则会自动变成B1。

    如果引用的单元格写成 $ A1则表示绝对引用A,相对引用1。这时如果把公式拖到第二行,则公式中的$ A1变成$ A2;但是如果拖到相邻的单元格,则公式中的$ A1还是$ A1,仍然引用的是A1单元格,而不是单元格B1

    如果引用的单元格写成$ A$ 1则无论公式拖到哪里,都表示引用的是A1单元格。

  7. Excel常用的插件整理
  8. 7.1 数据插值工具(XlXtrFun 免费),http://www.xlxtrfun.com/XlXtrFun/XlXtrFun.htm
    XlXtrFun是一个数据插值外推的宏包,可以实现一组数据的线性,Spline等方法的插值及实验数据的拟合。

Selected References on Organic Geochemistry

Zeng @May 12th, 2010 >> Views(553) | Reply (0) 

烃源岩评价方面(source rock evaluation):

1. Mackenzie,et al. Principle of geochemical prospect appraisal,AAPG Bull,1988,72(4):399-415.
2. Mackenzie,et al. A novel approach for recognition and quantification of hydrocarbon migration effects in shale-sandstone sequences. AAPG Bull,1984,68(2):196-219.
3. Harry Dembicki, JR.,et al. Source rock evaluation by pyrolysis-gas chromatography, AAPG Bull,1983,67(7):1094-1103.
4.Bishop, et al.Concepts for estimating hydrocarbon accumulation and dispersion, AAPG Bull,1983,67(3):337-348.
5.Cooles,et al. Calculation of petroleum masses generated and expelled from source rocks, Org. Geochem.,1986,10:235-245.
6.Lewan.Experiments on the role of water in petroleum formation,GCA,1997,61(17):3691-3723.
7.Katz, Limitations of ‘rock-eval’ pyrolysis for typing organic matter, Org. Geochem.,1983,4(3/4):195-199.
8.Peters, Guidelines for evaluation petroleum source rock using programmed pyrolysis, AAPG Bull,1986,70(3):318-329.
9.Landford, et al. Interpreting rock-eval pyrolysis data using graphs of pyrolizable hydrocarbons vs. total organic carbon,1990,74(6):799-804.
10.Conford, et al. Geochemical truths in large data sets. I: Geochemical screening data, Org. Geochem,1998,29(1-3):519-530.
11.Espitalie,et al. Role of mineral matrix in kerogen pyrolysis: influence on petroleum generation and migration,1980,64(1):59-66.
12.Dembicki, Three common source rock evaluation errors made by geologists during prospect or play appraisals, AAPG Bull,2009,93(3):341-356.

待续…

  • 生烃动力学方面(petroleum generation kinetics)
  • 生物标志物方面(biomarker)
  • 同位素方面(isotope)
  • 油气系统模拟方面(basin modeling)

Selected articles in the research history of stable carbon isotope kinetics

Zeng @May 7th, 2010 >> Views(6,814) | Reply (3) 

Clayton, C. (1991). “Carbon isotope fractionation during natural gas generation from kerogen.” Marine and Petroleum Geology 8(2): 232-240.

In petroleum exploration it is important to be able to determine the origin of any gas which is found. This paper describes a new method of estimating the source-type and maturity of a gas based on a Rayleigh fractionation model. Kerogen is divided conceptually into a labile (dominantly oil-generating) fraction and a refractory, gas-prone, component. [delta]13C of methane from either kerogen type, and ethane, propane and butane for gases from labile kerogen, can be defined as a function of [delta]13C of the gas precursor groups in kerogen, a kinetic isotope fractionation factor, k, and the extent of gas generation. The isotopic ratio of the methane precursors relative to bulk kerogen, determined from laboratory pyrolysis, are -17.5[per mille sign] for labile kerogen and -1.4[per mille sign] for refractory kerogen. Values for ethane, propane and butane from labile kerogen, based on field correlations, are -4.9[per mille sign], -2.2[per mille sign] and -1.6[per mille sign] respectively. The corresponding fractionation factors are 0.9892, 0.9919, 0.9947 and 0.9975 for methane, ethane, propane and butane respectively from labile kerogen, and 0.9984 for methane from refractory kerogen. Using these parameters, summary diagrams are constructed which allow differentiation of these sources from each other and from biogenic gases and cracked oil, and recognition of gases of mixed origin. If an independent estimate of [delta]13C for the source kerogen is possible, then [delta]13C of the gas components can be used to estimate maturity in terms of the Gas Generation Index, the fraction of gas potential which has been realized.

Cramer, B., B. M. Krooss, et al. (1998). “Modelling isotope fractionation during primary cracking of natural gas: a reaction kinetic approach.” Chemical Geology 149(3-4): 235-250.
(more…)

A sweet sweet dream

Zeng @May 7th, 2010 >> Views(315) | Reply (0) 

Before the dawn, I was woken up by a sweet sweet dream that drew me to a long long time ago when I was sitting in the middle school’s class, staring at the blackboard and following the teacher. I just could not stand that waters burst out of my eyes and then down slowly along the cheeks and penetrated into the towel, pillow. I was left alone both in and out the dream like a bystander! It was so close, however, so far far away that in some time i ever thought that i had lost them all. So miss, miss those days with my little friends, those days with my mom and dad, those days with my lovely sister, those days with my teachers discussing some newly learned knowledge, and those days i refused to wake up out of my warm quilt, those days playing with my cute but fat cat. Time flew, left nothing but time-eroded memory. I dive into the wandering, where i am going and what i am pursuing. ( 2010.04.11)

Life 

Hello world!

Zeng @May 6th, 2010 >> Views(406) | Reply (1) 

Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!

Note