| NDT.net - August 2000, Vol. 5 No. 08 |
- International Symposium on NDT Contribution tothe Infrastructure Safety Systems, 1999 NOV 22-26 Torres, published by UFSM, Santa Maria, RS, Brazil |
| TABLE OF CONTENTS |
The synthetic focus is based on the geometrical reflection or ray acoustic model [1-3]. In this model the focus of the ultrasonic transducer is assumed to be a point of constant phase which all the sound rays pass through before diverging in a cone whose angle is determined by the diameter of the transducer and the focal length. If a reflecting target is located beneath the focal point and within the cone, it is a simple matter to calculate the path length and the transit time for a signal traveling along the ray. The width of the cone at a given range corresponds to the aperture width that can be synthesized, and the path length that the signal must travel corresponds to the phase shift seen in the signal for that transducer position. With this information one can construct a corrected data set that incorporates the advantages of the larger transducer aperture.
Fig 1: Transducer beam width on the test block, showing the inspection position x1 and the defect position at x2
|
Fig 2: Distorted image resulting due to the beam width during a B-scan. The defect is at position (x2,d2).
|
In Fig. 1 we schematically see the transducer at the point x1 and a wave front just passing the defect zone at the position x2 at distance d2 from the boarder respectively. This transducer characteristics results in an image as shown in Fig. 2 from a single round hole in an iron block of width d.
The resulting broad image from the scanning is due the transducer aperture width, as shown in Fig. 3. Schematically the A-scan signals with the time shift required to focus on a point directly below the transducer at the center-scan position, corresponding to the B-scan of Fig. 2. The wave amplitude normally falls off away from the center but that is not shown in this figure.
The implemented algorithm uses the geometric model to recalculate points from lines in A-scan and thereafter correlate this signals to improve the obtained image. The sections that follows describe the basis and computational procedures and compare the experimental results.
Fig 3: Schematics of A-scan signals which compose the B-scan image ofFig. 2. |
| d3 = [ d22 + (x1 - x2 )2 ]1/2 or in a more generic form, | |
| dn = [ dA2 + (xA - xn )2 ]1/2 | (1) |
where xA is the x position of the A-scan line which is being analyzed;
| xn is the position of a A-scan line near to the xA line; |
| dn is the distance between the front block surface and the reflection of the ultrasonic pulse from the position xn ; |
| dA is the distance from the front block surface and the pulse due to the reflection of the ultrasonic signal obtained at position xA. |
The technique known as SAFT use this equation to eliminate or at least minimize the effects of the transducer aperture beam width over an B-scan or C-scan image. To use this technique we need to calculate, for each image line the position where the signal should be inside an adjacent line and thereafter a correlation has to be made. In practice we use a window with a certain number of lines, which fits in the transducer's beam aperture. The figures 4a, 4b and 4c show the corrections as implemented in this work, by using a four line window.
Fig. 4a shows a sequence of A-scans lines or time records of the reflected signals received by the transducer as it moves across the block, and the dotted line shows the effect of the beam width, which is the time shift required to focus on a point directly below the transducer at the center-scan position. Fig. 4b shows the SAFT process for the line at x1,
a
|
b
|
c
|
| Fig 4: Correction process by time shifting of the A-scan lines Fig. 4a shows the A-scan sequence lines with the dotted line showing the curvature due the beam aperture. Fig. 4b shows the SAFT process for line at x1, which presents the echo signal due to the defect at x2. Fig. 4c illustrates the SAFT process for the line at x2 (at the true position) corrected | ||
Which presents the echo signal due to the defect at x2, together with the position of the two adjacent lines (four line window), corrected in such a manner as if it appears that the defect were originated at x1. After this correction the correlation between these five lines is made which results in zero. The Fig. 4c illustrate the SAFT for the line at x2, which presents the corrected signal positions for x2, and because the defect is as assumed in x2, the correlation between the five lines is now maximum.
As we have seen, signals from the adjacent positions (consisting of the aperture) are shifted by the appropriate phase and added to the first signal. If the assumption was correct, the summation results in an enhanced response; if wrong, there is a poor correlation or zero.
The correlation process between the lines in the window region adjacent to the line to be corrected is made only after the correction procedure has taken place. This correlation is obtained by the summation over the adjacent lines as follow [4]:
| (2) |
For the description of this algorithm, the following considerations in C language is made: Variables: wid and hig are the width height of the image, imag is the vector where the pixel values corresponding to the B-scan are stored, win stores the window width used in the correlation, sum_prod is the vector where the resulting sums and products from the correlation process are stored, distx is the horizontal distance in pixels between the actual line in the widow and the image line, dif is the difference between the defect point and its false reflection, as calculated by equation (1), A is the traveled distance of the ultrasonic wave in the test block, and B is the distance between two A-scan lines, both in mm.
The summary of the C - like Algorithm is as follows:
// sum_prod vector initialization:
| .... |
| for( i=0; i < h ; i++ ) |
| sum_prod[ i ] = 0; |
| k = (int ) win /2 ; |
| for ( j = k ; j < wid - k ; j++ ) |
| { |
| for ( j1 = j - k ; j1 < j + k ; j1++ ) |
| { |
| distx = abs ( j - j1 ); |
| for ( i1 = 0 ; i1 < hig ; i1++ ) |
| { |
| dif_f = sqrt ( pow ( i1 * A, 2 )+ pow( dist * B, 2) ) - (float )( i1 * A ); |
| dif_i = (int ) (dif_f / A ); |
| sum_prod[ i1 ] = ( char ) ( imag [ j1 * wid + i1 - dif_i - |
| 128 * ( char ) (imag [ j * wid + i1 ] - 128 ) + (char) sum_prod[ i1 ]; |
| } |
| for ( ix =0 ; ix < hig ; ix ++ ) |
| { |
| sum_prod[ ix ] = (char ) (sum_prod [ ix ] / win) ; |
| imag [ j * wid + ix ] = ( u_char ) sum_prod [ ix ] +128 ) ; |
| } |
| } |
| } // end of SAFT algorithm. |
Fig 5: View of the steel test block, with 12 drilled holes - dimensions in mm (not shown in scale)
|
An example of the A-scan signals obtained from line 380 through line 465 by scanning our the test block from Fig. 5 is shown in Fig. 6. The denser part at the left of this figure corresponds to the first surface and the denser part at right corresponds to the bottom of the block. The central region at Fig. 6 shows the defects due to the 4mm holes, and because the missing focus both holes appears as one denser region, without any definition.
Fig 6: Sequence of A-scans obtained from a region (arround the 4mm holes ) of the test
block, from Fig. 5
|
Fig 7: Image generated by the SAFT algorithm, where the two 4mm holes can now be seen
with more detail.
|
Applying the described algorithm to the scans of Fig. 6 we obtained Fig. 7, where the separation between the two 4 mm holes now can be seen with much more definition. The Fig. 8 shows details of B-scan on the block of Fig.5 before and after the SAFT process. The bottom part of Fig. 8 is the resulting image, in where the drilled holes are better separated then shown in the top image.
Fig 8: Details of the original B-scan image (top ) and after processed with SAFT algorithm
(bottom). The scale on the bottom image corresponds to 10 mm.
|
| © NDT.net - info@ndt.net | |Top| |