Support Forums
Measurement with automatic adjustment on sampling rate

Hi,

I need to acquire data from edometric test. So, during a single test, i need to change the sampling rate, without stop the test (i.e. without interruption).

For example, sampling every 2 seconds for a minute; after, sampling every 60 seconds for the following hour; after, sampling every 30 minutes for the following seven hour. Altogether the test is 8 hour long.

If is possible this sequence, may I run more test with different start in a day?

Bye Giovanni

Hi, I need to acquire data from edometric test. So, during a single test, i need to change the sampling rate, without stop the test (i.e. without interruption). For example, sampling every 2 seconds for a minute; after, sampling every 60 seconds for the following hour; after, sampling every 30 minutes for the following seven hour. Altogether the test is 8 hour long. If is possible this sequence, may I run more test with different start in a day? Bye Giovanni

Hi Giovanni

You can change the sampling rate by sending a new schedule command, e.g: "RA1M" will change the sampling rate of schedule A to 1 minute. So you could do something like:

begin
1cv=0
rax 1v
rb1m
if(1cv<1){ra2s} 
if(1cv><1,60){ra1m}
if(1cv><60,480){ra30m}
if(1cv>480)"test complete"{rax}
1cv=1cv+1 ' 1cv plus 1
end

Schedule B runs once a minute and changes the rate of schedule A depending on how much time has elapsed. To repeat the test, set 1cv back to 0.

cheers,
Jeremy

Hi Giovanni You can change the sampling rate by sending a new schedule command, e.g: &quot;RA1M&quot; will change the sampling rate of schedule A to 1 minute. So you could do something like: ```` begin 1cv=0 rax 1v rb1m if(1cv&lt;1){ra2s} if(1cv&gt;&lt;1,60){ra1m} if(1cv&gt;&lt;60,480){ra30m} if(1cv&gt;480)&quot;test complete&quot;{rax} 1cv=1cv+1 &#039; 1cv plus 1 end ```` Schedule B runs once a minute and changes the rate of schedule A depending on how much time has elapsed. To repeat the test, set 1cv back to 0. cheers, Jeremy
24
1
1
live preview
enter atleast 10 characters
WARNING: You mentioned %MENTIONS%, but they cannot see this message and will not be notified
Saving...
Saved
With selected deselect posts show selected posts
All posts under this topic will be deleted ?
Pending draft ... Click to resume editing
Discard draft