About process HV error

Discuss here all technical and scientific questions about the processing of ambient vibrations for site characterization (H/V, Array methods,...)
Post Reply
ESBornand
Posts: 11
Joined: Mon May 18, 2020 2:03 pm

About process HV error

Post by ESBornand »

Dear, I have some files to process HV *.SEG2, however when processing it throws me a screen and does not allow me to advance, "Add signal id 1 to component Vertical of station R001 at 55 0 0"
I attach reference image and file.

Thanks.
Attachments
Error HV.jpg
(67.82 KiB) Not downloaded yet
2025-02-25_10-12NAK1.rar
(4.8 MiB) Downloaded 940 times
IgnazioC
Posts: 2
Joined: Sat Mar 01, 2025 2:27 pm

Re: About process HV error

Post by IgnazioC »

Hello,

your data seems to have 2 kinds of problem (see "original data"):
1) they are all loaded as vertical;
2) "Rec o" in "Table", have different values.

You need to edit table values (see "edit - lock table edition" image), with the rigth values of type of sensor per channel and it should work (see "final" image).

Bye
Attachments
original data.jpg
(34.66 KiB) Not downloaded yet
final.jpg
(158.13 KiB) Not downloaded yet
edit - Lock table edition.jpg
(47.36 KiB) Not downloaded yet
admin
Site Admin
Posts: 836
Joined: Mon Aug 13, 2007 11:48 am
Location: ISTerre
Contact:

Re: About process HV error

Post by admin »

Hi,
I confirm IgnazioC's comments. A H/V station is supposed to have three components and located at the same coordinates (Receiver X and Y must be the same for all components). You can also modify these values with a script in menu Edit/Set header.

For instance, in your particular case, you should run:

Code: Select all

for(i=0; i<signals.length; i+=3) {
  signals[i].component="Z"
  signals[i+1].component="N"
  signals[i+2].component="E"
}
for(i=0; i<signals.length; i++) {
  signals[i].receiverX=0;
  signals[i].receiverY=0;
  signals[i].receiverZ=0;
}
Adapt the order of components to your case.
Post Reply