-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefault.rb
32 lines (28 loc) · 971 Bytes
/
default.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
require './lib/response'
[50, 100, 250, 500, 1000, 2000, 4000].each do |rate|
Response.create_resp_file("resp/6D6-Trillium-#{rate}sps.resp",
Response.stages_6d6(rate, 20 * Math.sqrt(2), [
Response::TrilliumCompact120,
]))
end
[50, 100, 250, 500, 1000, 2000, 4000].each do |rate|
Response.create_resp_file("resp/6D6-HTI-04-PCA-ULF-INA3M-#{rate}sps.resp",
Response.stages_6d6(rate, 0.625, [
Response.hti_04_pca_ulf(R: 3e6),
]),
channel: 'BDH')
end
[50, 100, 250, 500, 1000, 2000, 4000].each do |rate|
Response.create_resp_file("resp/6D6-HTI-04-PCA-ULF-INA200M-#{rate}sps.resp",
Response.stages_6d6(rate, 0.625, [
Response.hti_04_pca_ulf(R: 200e6),
]),
channel: 'BDH')
end
[50, 100, 250, 500, 1000, 2000, 4000].each do |rate|
Response.create_resp_file("resp/6D6-HTI-04-PCA-ULF-HELGA-#{rate}sps.resp",
Response.stages_6d6(rate, 0.625, [
Response.hti_04_pca_ulf(R: 50e6),
]),
channel: 'BDH')
end