1 / 49

MATLAB

MATLAB. SAC. Data Format and Header. Each signal or seismogram is stored in a separate binary or alphanumeric data file. Each data file contains a header that describes the contents of that file. Time.

eshe
Download Presentation

MATLAB

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. MATLAB SAC

  2. Data Format and Header • Each signal or seismogram is stored in a separate binary or alphanumeric data file. • Each data file contains a header that describes the contents of that file.

  3. Time • The SAC header contains a reference or zero time, stored as six integers (NZYEAR, NZJDAY, NZHOUR, NZMIN, NZSEC, NZMSEC), but normally printed in an equivalent alphanumeric format (KZDATE and KZTIME). %sac SAC> r GRAT.EHZ.NM SAC> lh#list header FILE: GRAT.EHZ.NM – 1 #this is a partial header ----------------- NPTS = 360100 B = 0.000000e+00 E = 3.600990e+03 IFTYPE = TIME SERIES FILE DELTA = 1.000000e-02 KZDATE = APR 06 (097), 2008 KZTIME = 02:59:59.320

  4. Event and Station Info • SAC header can store station and event info FILE: WMQ.BHZ.D.1995.073:10.34.49 - 1 --------------------------------- KSTNM = WMQ STLA = 4.382110e+01 STLO = 8.769500e+01 STEL = 8.970000e+02 (m) EVLA = 3.086000e+00 EVLO = 9.584800e+01 EVDP = 3.040000e+01

  5. Once the event and station information are store, the program automatically calculates and stores distance, azimuth, backazimuth, and great circle arc length DIST = 4.583862e+03 (km) AZ = 3.510350e+02 (degrees) BAZ = 1.675856e+02 (degrees) GCARC = 4.120298e+01 (degrees)

  6. Header Storage • http://www.iris.edu/manuals/sac/SAC_Manuals/FileFormatPt1.html • http://www.iris.edu/manuals/sac/SAC_Manuals/FileFormatPt2.html

  7. Matlab function: sac.m function [head1, head2, head3, data]=sac(filename) % Read one single SAC format file %head1 (float matrix),head2 (int matrix), and head3 (char matrix). % head3 here is integer matrix, to show it under ASCII, just char(head3). fid=fopen(filename, 'rb','b'); status=fseek(fid,0,'bof'); head1=fread(fid, [5, 14], 'float32'); head2=fread(fid, [5, 8], 'int32'); head3=fread(fid, [24, 8], 'char'); head1=head1'; head2=head2'; head3=head3'; data=fread(fid, npts, 'float32');

  8. Matlab function: loadsac.m function [data,npts,delta,b,dist,az,baz,gcarc] =… loadsac(sacfilename) [head1, head2, head3, data]= … sac(sacfilename); delta = head1(1); npts=head2(2,5); b= head1(2,1); dist= head1(11,1); az = head1(11,2); baz = head1(11,3); gcarc=head1(11,4); As currently written, you modify the output of loadsac to get the header values you are interested in …. Needs to be generalized, and other similar sac readers exist

  9. Coding and Flow Charts • Longer codes may require a roadmap (much like your research projects!) • Today’s lecture will focus on understanding Chuck’s matlab script for polarization analysis using 3 component recordings of body and/or surface waves http://www.ceri.memphis.edu/people/langston/matlab/polarize.html

  10. GOAL: solve for polarization using 3 component seismic data • Starting data: 3 component single station SAC formatted data • Result: Identify the azimuth(s) of the primary wave(s) recorded in the data • How to we get from A to B?

  11. Principal Component Analysis • Principal component analysis (PCA) is a vector space transform often used to reduce multidimensional data sets to lower dimensions for analysis.

  12. PCA involves the calculation of the eigenvalue decomposition of a data covariance matrix or singular value decomposition of a data matrix, usually after mean centering the data for each attribute. • Its operation can be thought of as revealing the internal structure of the data in a way which best explains the variance in the data.

  13. What we are looking for: • New set of axes (basis) that maximizes the correlation of HT(Z) with R, and minimizes the correlations between both HT(Z) and R with T. • We are not using the full power of PCA, since we already have some model for the result of the analysis (and have therefore preprocessed the data by taking the Hilbert transform of the z component).

  14. What is the idea? • Seismic waves are polarized • P wave longitudinal (V and R) • S wave transverse with SH and SV polarizations (T, V and R) • Rayleigh waves (V and R) • Love waves (T).

  15. GOAL: Solve for polarization

  16. Step 1: Data Preparation

  17. Create function ‘polarize’ function polarize(station,twin,hilb,flp,fhi) % Program to read in 3 component waveform data % Create the covariance matrix for a moving time window % Find the principal components and infer polarization % Written by CL Langston on somedate % input: % station = station name for sacfile prefix % twin = window size in secs % hilb=1 to preformhilbert transform, 0 to not % flp = low frequency corner frequency of a 2nd order butterworth % filter used to filter the data, if 0, then no filtering % fhi = hi frequency corner frequency of the filter

  18. Loading SAC data • Many matlab scripts exist to read in sac data. • Chuck provides one .m file called readsac.m online • Currently this is sensitive to byte order format and requires that you provide the npts and delta of the input sac data… • It is not as flexible as it could be • Amplitude data is a row vector • I have one loadsac.m that uses a subroutine ‘sac’ • not sensitive to byte order • returns the data, npts, delta, and begin point of the SAC file • data is a column vector • may be stolen from /home/hdeshon/Bolivia/matlab

  19. %use input variable station to construct the filenames ename=strcat(station,'.BHE.SAC'); nname=strcat(station,'.BHN.SAC'); zname=strcat(station,'.BHZ.SAC'); [e,npts1,delt1,b] = loadsac(ename); [n,npts2,delt2,b] = loadsac(nname); [z,npts3,delt3,b] = loadsac(zname);

  20. if npts1~=npts2 && npts1~=npts3 %requires data be same length exit; else npts=npts1; delt=delt1; ttot=(npts-1)*delt; %total time in secs for i=1:npts t(1,i)=i*delt; %create row vector of times rather than points end end How would we vectorized this? t=linspace(1,npts,npts); t=t*delt;

  21. Removing the data mean • We need to remove the mean of the data for principal component analysis (PCA). • We also need to transpose the column vector data into row vectors. e=dmean(e’); % remove the mean from each n=dmean(n’); % and transpose the data z=dmean(z’);

  22. subroutine: dmean function [a]=dmean(b) % [a]=dmean(b) % Remove the mean from a row vector m=mean(b); a=b-m; return;

  23. For this example, the data is actually a synthetically derived set of surface waves using a function Chuck wrote called testchirps. Real data would not look this clean.

  24. Rayleigh R and Z related by Hilbert X-form 90° phase shift, blue trace is Hilbert Transformed to green trace, then overlays red trace

  25. Hilbert Transform ifhilb ==1; % hilbert transform the vertical component zh=hilbert(z); % to make Rayleigh wave in phase on vertand horz z=-imag(zh); % if present else; end;

  26. Make Love and Rayleigh waves (Z, R and T)

  27. Rotate horizontals into seismograms @ 30°.

  28. Plot the data % plot the raw data f1=figure('name','DATA SEISMOGRAMS'); subplot(3,1,1); plot(t,e); xlabel('time sec'); ylabel(strcat('EW Comp at ',station)); subplot(3,1,2); plot(t,n); xlabel('time sec'); ylabel(strcat('NS Comp at ',station)); subplot(3,1,3); plot(t,z); xlabel('time sec'); ylabel(strcat('Z comp at ',station)); Love Wave Rayleigh Wave Rayleigh Wave

  29. Filtering • Filtering is a two part project in Matlab • Design the filter • Apply the filter • There is a filter design GUI you can use to design the perfect filter called fdatool • Or you can design filters using pre-built filter types (Butterworth, Bessel, etc.)

  30. function [d]=bandpass(c,flp,fhi,npts,delt) % [d]=bandpass(c,flp) % bandpass a time series with a 2nd order butterworth filter % c = input time series % flp = lowpass corner frequency of filter % fhi = highpass corner frequency % npts = samples in data % delt = sampling interval of data n=2; % 2nd order butterworth filter fnq=1/(2*delt); % Nyquist frequency Wn=[flp/fnqfhi/fnq]; % non-dimensionalize the corner frequencies [b,a]=butter(n,Wn); % butterworthbandpass non-dimensional frequency d=filtfilt(b,a,c); % apply the filter: use zero phase filter (p=2) return;

  31. Filter & plot the filtered data % filter the data e1=bandpass(e,flp,fhi,npts,delt); n1=bandpass(n,flp,fhi,npts,delt); z1=bandpass(z,flp,fhi,npts,delt); e=e1; n=n1; z=z1; % plot the filtered data f2=figure('name','FILTERED SEISMOGRAMS'); subplot(3,1,1); plot(t,e1); …… removed for clarity

  32. GOAL: Solve for polarization

  33. Step 2: Main Code

  34. Moving window using loops % Moving window loop npts1=fix(ttot/delt) + 1; % total number of samples to analyze nwin=fix(twin/delt) + 1; % number of samples in a time window npshift=fix(twin/(2*delt))+1; % number of samples to shift over kfin=fix((npts1-nwin)/(npshift+1))+1; % number of time windows considered mxde1=0.; mxde2=0.; mxde3=0.; npts1 nwin npshift

  35. for k=1:kfin; nwinst=(k-1)*(npshift-1)+1; % start of time window nwinfn=nwinst+nwin-1; % end of time window …….. missing code to be supplied later t2(k)=delt*(nwinst-1); % assign time for this window to the window start end; k=1 k=3 … k=kfin k=2

  36. Eigenvalues/Eigenvectors

  37. Missing code from inside our loop a=csigm(e,n,z,nwinst,nwinfn); % signal matrix c=a'*a; % covariance matrix [v1,d1]=eig(c); % eigenvalue/eigenvectors [v,d]=order(v1,d1); % put eigenvalues & eigenvectors in ascending order % azimuth for each of the 3 eigenvalues ang1(k)=atan2(v(1,1),v(2,1)) * 180/pi; ang2(k)=atan2(v(1,2),v(2,2)) * 180/pi; ang3(k)=atan2(v(1,3),v(2,3)) * 180/pi; % incidence angle of the 3 eigenvalues vang1(k)=acos(abs(v(3,1)))* 180/pi; %angle from the vertical vang2(k)=acos(abs(v(3,2)))* 180/pi; vang3(k)=acos(abs(v(3,3)))* 180/pi;

  38. Still in loop de1(k)=d(1); de2(k)=d(2); de3(k)=d(3); mxde1=max(mxde1,de1(k)); % find the maximum values mxde2=max(mxde2,de2(k)); mxde3=max(mxde3,de3(k));

  39. Outside of Loop again f3=figure('name','Eigenvalues and Inferred Azimuth'); subplot(3,1,1); plot(t2,de1,'-or',t2,de2,'-dg',t2,de3,'-+b'); xlabel('time sec'); ylabel('eigenvalues'); subplot(3,1,2); plot(t2,ang1,'-or',t2,ang2,'-dg',t2,ang3,'-+b'); xlabel('time sec'); ylabel('Azimuth '); subplot(3,1,3); plot(t2,vang1,'-or',t2,vang2,'-dg',t2,vang3,'-+b'); xlabel('time sec'); ylabel('incidence angle ');

  40. GOAL: Solve for polarization

  41. Rose Diagrams % Rose plots f4=figure('name','Azimuth Distribution'); subplot(2,3,1); title('Azimuth - Largest Eigenvalue'); rose(ang1*pi/180,100); subplot(2,3,2); title('Azimuth - Intermediate Eigenvalue'); rose(ang2*pi/180,100); subplot(2,3,3); title('Azimuth - Smallest Eigenvalue'); rose(ang3*pi/180,100);

  42. 2 Bonus Points: Vectorizationof polarization code • If we take a short time period we can think of each component as a vector of n terms. • If we take the dot product of each vector with itself and with the other two components we can find the “angle” between them.

  43. We can also make these dot products by making a 3xn array using each seismogram as a row. • Multiplying this array with its transpose results in a 3x3 matrix with the various dot products in the elements of the matrix.

  44. Now find the eigenvectors and eigenvalues of this matrix. • From the eigenvectors we can make a rotation matrix that will rotate our matrix to a diagonal matrix. • The off diagonal elements are now all zero and from the geometric interpretation of the dot product this means that the two vectors used to make that dot product are perpendicular.

  45. So we can rotate the original horizontal components into a new set of seismograms rotated to the principal directions defined by the eigenvectors. • The dot products of the off diagonal terms will now be zero, indicating the vectors are perpendicular.

More Related