<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://en.formulasearchengine.com/index.php?action=history&amp;feed=atom&amp;title=Linearised_polynomial</id>
	<title>Linearised polynomial - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://en.formulasearchengine.com/index.php?action=history&amp;feed=atom&amp;title=Linearised_polynomial"/>
	<link rel="alternate" type="text/html" href="https://en.formulasearchengine.com/index.php?title=Linearised_polynomial&amp;action=history"/>
	<updated>2026-05-21T00:45:18Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.0-wmf.28</generator>
	<entry>
		<id>https://en.formulasearchengine.com/index.php?title=Linearised_polynomial&amp;diff=28199&amp;oldid=prev</id>
		<title>en&gt;Wcherowi: /* References */ alphabetize</title>
		<link rel="alternate" type="text/html" href="https://en.formulasearchengine.com/index.php?title=Linearised_polynomial&amp;diff=28199&amp;oldid=prev"/>
		<updated>2013-10-06T19:14:08Z</updated>

		<summary type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;References: &lt;/span&gt; alphabetize&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;
&amp;lt;!-- EDIT BELOW THIS LINE --&amp;gt;&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;Semblance analysis&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039; is a process used in the refinement and study of seismic data. The use of this technique along with other methods makes it is possible to greatly increase the resolution of the data despite the presence of background noise. This new data is usually easier to interpret when trying to deduce the underground structure of an area.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
Semblance analysis is a technique that first began to be developed and used in the late 1960s. Prior to the discovery of this method identifying the main reflections produced by the many layers under the ground was fairly difficult. The primary reflections of these layers were often obscured by the background noise as well as noise from the many secondary reflections that are produced. The use of semblance analysis however allows for the removal of the extra noise and leaves only the primary reflection.&lt;br /&gt;
&lt;br /&gt;
== Process ==&lt;br /&gt;
&lt;br /&gt;
[[File:KR-example.png|thumb|Uncorrected data showing hyperbolic curve.]]&lt;br /&gt;
[[File:Corrected wigb.png|thumb|Corrected data.]]&lt;br /&gt;
&lt;br /&gt;
Semblance analysis allows for the refinement of seismic data. This is done by developing a velocity spectra display to determine the velocity through different layers at depth. The easiest way to accomplish this is by recording the normal incidence path (NIP). The NIP is the where you have the shot and the geophone in the same location and the path taken by the recorded sound waves in perpendicular to the boundaries between the layers. This path represents the shortest amount of time that can be taken to reach a layer and return. With this information it becomes fairly easy to calculate the velocity of the waves as they travel through each layer by the using the equation for the root mean square velocity starting with the top layer and working downward.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;V_\mathrm{rms} =  \sqrt { \frac { \sum t_i \cdot {V_i}^2 }{\sum t_i} }&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once all of the velocities for the layers are known then it is possible to calculate the amount of time that is needed for the wave to travel the distance down to the midpoint between the each geophone and the shot point for each of the layers. As the geophones are farther away from the shot the time taken for the wave to travel there increases which forms a hyperbola in a graph of time vs. distance. The velocity data is used to correct the curves of the hyperbolas and create a flat line where all points are at an equal depth. The final step for the semblance analysis is to sum all of the data that has been corrected for velocity. This is done with the use of a computer filter which will sum together all of the events that the traces share and remove the ones that they do not. The result is a single data set that has all of the primary peaks strongly displayed with most of the noise removed. &amp;lt;ref&amp;gt;{{cite journal|last=Taner|first=Turhan|coauthors=Fulton Koehler|title=Velocity Spectra-Digital Computer Derivation and Application of Velocity Functions|journal=Geophysics|year=1969|month=December|volume=34|issue=6|pages=859–881}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
While this technique can be very useful in the analysis there are several situations in which the process will not work. Semblance analysis will not work properly when the offset from the shot is greater than the depth of the reflecting layers because the data no longer has a hyperbolic pattern. To correct this it is necessary to use more complex equations that model non-hyperbolic moveout. Also in situations where there is large offset there can also be polarity reverses with moveout then the data will be heavily distorted.  To make moveout analysis suitable for data with polarity reversals a method known as AK semblance developed. This method first worked only for 2D models but has since been further refined for 3D as well.  &amp;lt;ref&amp;gt;{{cite journal|last=Yan|first=Jia|coauthors=Ilya Tsvankin|title=AVO-sensitive semblance analysis for wide-azimuth data|journal=Geophysics|year=2008|month=March-April|volume=73|issue=2|pages=U1–U11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Code of program==&lt;br /&gt;
This code is for a program in perl that allows for the determination of multiple moveout velocities for the correction of seismic data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
set -x&lt;br /&gt;
&lt;br /&gt;
# nmo_test.sh&lt;br /&gt;
&lt;br /&gt;
# Nov. 8, 2012&lt;br /&gt;
&lt;br /&gt;
# Program to test nmo&amp;#039;s&lt;br /&gt;
&lt;br /&gt;
# several constant velocity moveouts are tested&lt;br /&gt;
&lt;br /&gt;
# starting at 600 m/s and ending at 1000 m/s&lt;br /&gt;
&lt;br /&gt;
# STEP 1: Data is sorted by cdp and offset&lt;br /&gt;
&lt;br /&gt;
#STEP 1A: Data is windowed&lt;br /&gt;
&lt;br /&gt;
# STEP 2: DATA is moved out&lt;br /&gt;
&lt;br /&gt;
# STEP 3: data is filtered&lt;br /&gt;
&lt;br /&gt;
# STEP 4: data is gained&lt;br /&gt;
&lt;br /&gt;
# STEP 5: data is displayed&lt;br /&gt;
&lt;br /&gt;
# Juan M. Lorenzo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
# set up working directories&lt;br /&gt;
&lt;br /&gt;
SU_DIR=&amp;#039;Directory&amp;#039;&lt;br /&gt;
&lt;br /&gt;
this_file=&amp;#039;inpute_file&amp;#039;&lt;br /&gt;
&lt;br /&gt;
counter=0&lt;br /&gt;
&lt;br /&gt;
vel_start=7500&lt;br /&gt;
&lt;br /&gt;
vel_last=35000&lt;br /&gt;
&lt;br /&gt;
vel_inc=5000&lt;br /&gt;
&lt;br /&gt;
first_cmp=1&lt;br /&gt;
&lt;br /&gt;
last_cmp=1&lt;br /&gt;
&lt;br /&gt;
for ((vel=$vel_start; vel&amp;lt;=$vel_last; vel=$vel+$vel_inc)) &lt;br /&gt;
&lt;br /&gt;
do&lt;br /&gt;
&lt;br /&gt;
	echo $vel&lt;br /&gt;
&lt;br /&gt;
	susort  &amp;lt;$SU_DIR/$this_file.su  cdp offset	\&lt;br /&gt;
&lt;br /&gt;
		|&lt;br /&gt;
&lt;br /&gt;
	suwind key=cdp min=$first_cmp max=$last_cmp  \&lt;br /&gt;
&lt;br /&gt;
		|					\&lt;br /&gt;
&lt;br /&gt;
	sunmo  vnmo=$vel		\&lt;br /&gt;
&lt;br /&gt;
		|					\&lt;br /&gt;
&lt;br /&gt;
	sufilter  f=0,3,400,600				\&lt;br /&gt;
&lt;br /&gt;
		| 					\&lt;br /&gt;
&lt;br /&gt;
	sugain agc=1 wagc=0.1				\&lt;br /&gt;
&lt;br /&gt;
		|					\&lt;br /&gt;
&lt;br /&gt;
	suximage   			\&lt;br /&gt;
&lt;br /&gt;
							\&lt;br /&gt;
&lt;br /&gt;
	xbox=$[$counter*200] ybox=0 wbox=200 hbox=600  	\&lt;br /&gt;
&lt;br /&gt;
	title=&amp;quot;$vel m/s&amp;quot; &amp;amp; 		\				&lt;br /&gt;
&lt;br /&gt;
	counter=$[$counter+1]&lt;br /&gt;
&lt;br /&gt;
done&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{Reflist}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Seismology]]&lt;/div&gt;</summary>
		<author><name>en&gt;Wcherowi</name></author>
	</entry>
</feed>