Tuesday, December 1, 2015

Organic Nanopores in Shale


  • Organic Nanopores Structure Materials - Pyrobitumen

The carbon-rich residue of catagenesis, pyrobitumen constitutes the material of organic part of the rock. The Pyrobitumen is a type of solid, amorphous organic matter, which is insoluble to organic solvent (different from bitumen). However, one should not confuse pyrobitumen with residual kerogen in a mature source rock and the distinction is based on microscopic evidence of fluid flow within the rock fabric and is usually not determined. The thermal processes (bitumen to pyrobitumen) driving the molecular cross-linking also decrease the atomic ratio of hydrogen to carbon from greater than one to less than one and ultimately to approximately one half.


  • Gas Adsorption
Similar to surface tension, adsorption is a consequence of surface energy. In a bulk material, all the bonding requirements (be they ionic, covalent, or metallic) of the constituent atoms of the material are filled by other atoms in the material. However, atoms on the surface of the adsorbent are not wholly surrounded by other adsorbent atoms and therefore can attract adsorbates. The exact nature of the bonding depends on the details of the species involved, but the adsorption process is generally classified as physisorption (characteristic of weak van der Waals forces) or chemisorption (characteristic of covalent bonding). It may also occur due to electrostatic attraction.


Affecting Factors: (i) In general, easily liquefiable gases e.g., CO2, NH3, Cl2 and SO2 etc. are adsorbed to a greater extent than the elemental gases e.g. H2, O2, N2, He etc. (while chemisorption is specific in nature.) 

(ii) Porous and finely powdered solid e.g. charcoal, fullers earth, adsorb more as compared to the hard non-porous materials. Due to this property powdered charcoal is used in gas masks.

However, most importantly, the extent of adsorbate adsorption depends directly upon the surface area of the adsorbent.

Adsorption forces and potentials: Methane is generally considered as non-polar molecules. The inter-molecular forces between gas molecules and nanopore surface can be obtained using atom–atom pair potentials, namely a Lennard–Jones (LJ) potential.

[\V_{LJ} = 4\varepsilon \left[ \left(\frac{\sigma}{r}\right)^{12} - \left(\frac{\sigma}{r}\right)^{6} \right] = \varepsilon \left[ \left(\frac{r_{m}}{r}\right)^{12} - 2\left(\frac{r_{m}}{r}\right)^{6} \right]
\]


where ε is the depth of the potential well, σ is the finite distance at which the inter-particle potential is zero, r is the distance between the particles, and rm is the distance at which the potential reaches its minimum.

The r−12 term, which is the repulsive term, describes Pauli repulsion at short ranges due to overlapping electron orbitals and the r−6 term, which is the attractive long-range term, describes attraction at long ranges (van der Waals force, or dispersion force).

Isotherm models: Irving Langmuir was the first to derive a scientifically based adsorption isotherm in 1918. The model applies to gases adsorbed on solid surfaces. It is a semi-empirical isotherm with a kinetic basis and was derived based on statistical thermodynamics. It is the most common isotherm equation to use due to its simplicity and its ability to fit a variety of adsorption data. The mono-layer assumption is addressed by the BET isotherm for relatively flat (non-microporous) surfaces.

Sunday, November 22, 2015

Surface Tension Change with Salinity

Yes, adding salt to water does increase the surface tension of water, although not by any significant amount. 

It is a very common misconception that salt is a surfactant, i.e. a compound that either lowers or breaks surface tension. However, experiments done with salt water show that surface tension actually increases when salt is added to pure water. 

As you know, sodium chloride, or NaCl, is a strong electrolyte, which means it completely dissociates into sodium cations, Na+, and chloride anions, Cl, when placed in water.

http://chem.wisc.edu/deptfiles/genchem/sstutorial/Text7/Tx75/tx75.htmlhttp://chem.wisc.edu/deptfiles/genchem/sstutorial/Text7/Tx75/tx75.html

It turns out that the strong interactions between the sodium cations and the partial negative oxygen, and the chloride anions and the partial positive hydrogens, although they disrupt part of the hydrogen bonding that takes place between water molecules, actually strengthen the surface tension of water.

In other words, you get some ionic component to the overall hydrogen bond-dominated interactions from the addition of these cations and anions. 

A very common experiment meant to illustrate this concept is done by placing salt water drops on a penny. I'll post a link to a great article on such an experiment performed by Lucas Cherkewski

Tuesday, November 3, 2015

Statoil to build the world’s first floating wind farm: Hywind Scotland

Statoil has made the final investment decision to build the world’s first floating wind farm: The Hywind pilot park offshore Peterhead in Aberdeenshire, Scotland.

Sunday, September 20, 2015

Partnership to Take Rock-Fluid Research to the Atomic Level

A partnership between FEI Company and the University of Wyoming (UW) will enable for the first time ever the study of interactions between fluid and rocks at the atomic level for oil and gas research. The research – which aims to advance digital rock technology to achieve a better understanding of the fundamental forces at play in rock-fluid behavior – could potentially impact the entire oil and gas life cycle, from better well design for production to more effective enhanced oil recovery techniques for mature fields.

 - See more at: 
http://www.rigzone.com/news/oil_gas/a/140670/Partnership_to_Take_RockFluid_Research_to_the_Atomic_Level#sthash.wZ8dKwE6.dpuf

Wednesday, August 5, 2015

Mud to Lime: transitional lithotypes


Chalk vs Limestone vs Marble

Chalk is formed in a deep marine environment from the shells of microscopic algae which flourish near the surface, but die and fall to the seafloor. The kind of chalk used in old-style classrooms and lecture theatres scrapes off a thin layer of fine white dust as they are scraped over the abrasive surface of a "blackboard".

Limestone is formed in a shallower marine environment from the bodies of corals and shells, as well as the shells of microscopic sea life. Since it contains large lumps, it does not form such a fine white powder as chalk.

Marble is metamorphosed limestone, ie subjected to heat and pressure, the crystals grow and interlock, forming a stronger rock, more suitable for a building material. Sometimes minerals in the original limestone are still visible as swirls of colour in the marble.


Tuesday, July 7, 2015

Excel VBA

String:
  • chr(13) = change to the next line
  • _ =  break code to two lines


Function:

  • Transpose: Application.WorksheetFunction.Transpose()
  • Upper and lower bound: UBound() and LBound()
  • Join/concatenate: joins text, numbers, cell references, or a combination of those items into one text string
Range:
  • Range("B1:B10 , A4:D6").Select 选中两块不连续区域;
  • Range("B1:B10   A4:D6").Select 选中交叉的区域;
  • Range("B1:B10","A4:D6").Select 选中包含两块区域的最小矩形。


  • UsedRange: 所有使用过的单元格围成的区域;
  • Current Region: 所在的当前的区域;
  • Offset: 向下向右移动位置;
  • Range("A65536").End(xlUp).Offset(1,0): A列第一个非空的单元格;
  • Count: 单元格个数;
  • Address: 单元格位置;
  • Select, Activate
  • Clear, ClearContents, ClearComments, ClearFormats
  • Copy, Cut, Delete