irie 0.0.0__py3-none-any.whl → 0.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of irie might be problematic. Click here for more details.

Files changed (94) hide show
  1. irie/__main__.py +1 -1
  2. irie/apps/config.py +2 -2
  3. irie/apps/documents/apps.py +1 -1
  4. irie/apps/documents/urls.py +1 -1
  5. irie/apps/evaluation/apps.py +2 -2
  6. irie/apps/evaluation/daemon.py +2 -2
  7. irie/apps/evaluation/identification.py +3 -3
  8. irie/apps/evaluation/models.py +2 -2
  9. irie/apps/evaluation/views.py +3 -3
  10. irie/apps/events/apps.py +2 -2
  11. irie/apps/events/models.py +1 -1
  12. irie/apps/events/views.py +2 -2
  13. irie/apps/events/views_events.py +3 -3
  14. irie/apps/inventory/apps.py +1 -1
  15. irie/apps/inventory/forms.py +1 -1
  16. irie/apps/inventory/models.py +2 -2
  17. irie/apps/inventory/urls.py +1 -1
  18. irie/apps/inventory/views.py +11 -11
  19. irie/apps/networks/apps.py +1 -1
  20. irie/apps/networks/networks.py +1 -1
  21. irie/apps/networks/urls.py +3 -3
  22. irie/apps/prediction/apps.py +1 -1
  23. irie/apps/prediction/forms.py +1 -1
  24. irie/apps/prediction/models.py +1 -1
  25. irie/apps/prediction/views.py +4 -4
  26. irie/apps/prediction/views_api.py +3 -3
  27. irie/apps/site/config.py +2 -2
  28. irie/apps/site/urls.py +1 -1
  29. irie/apps/site/view_sdof.py +1 -1
  30. irie/core/settings.py +9 -9
  31. irie/core/urls.py +8 -8
  32. irie/init/__main__.py +27 -0
  33. irie/init/bridges.py +1098 -0
  34. irie/init/calid.py +34 -0
  35. irie/init/getCGSData.py +104 -0
  36. irie/init/getCGSevents.py +16 -0
  37. irie/init/getNBIData.py +201 -0
  38. irie/init/init_assets.py +172 -0
  39. irie/init/init_corridors.py +39 -0
  40. irie/init/init_predictors.py +46 -0
  41. irie/mgmt.py +24 -0
  42. {irie-0.0.0.dist-info → irie-0.0.1.dist-info}/METADATA +24 -5
  43. irie-0.0.1.dist-info/RECORD +109 -0
  44. irie/apps/authentication/migrations/__init__.py +0 -1
  45. irie/apps/evaluation/migrations/0001_initial.py +0 -25
  46. irie/apps/evaluation/migrations/0002_remove_evaluation_cesmd.py +0 -17
  47. irie/apps/evaluation/migrations/0003_evaluation_asset.py +0 -20
  48. irie/apps/evaluation/migrations/__init__.py +0 -0
  49. irie/apps/events/migrations/0001_initial.py +0 -27
  50. irie/apps/events/migrations/0002_alter_event_id.py +0 -18
  51. irie/apps/events/migrations/0003_event_cesmd.py +0 -19
  52. irie/apps/events/migrations/0004_event_record_identifier.py +0 -19
  53. irie/apps/events/migrations/0005_event_asset.py +0 -21
  54. irie/apps/events/migrations/0006_alter_event_event_file.py +0 -18
  55. irie/apps/events/migrations/__init__.py +0 -0
  56. irie/apps/inventory/migrations/0001_initial.py +0 -31
  57. irie/apps/inventory/migrations/0002_assetevaluationmodel_cesmd.py +0 -19
  58. irie/apps/inventory/migrations/0003_auto_20230520_2030.py +0 -23
  59. irie/apps/inventory/migrations/0004_asset.py +0 -27
  60. irie/apps/inventory/migrations/0005_auto_20230731_1802.py +0 -23
  61. irie/apps/inventory/migrations/0006_auto_20230731_1816.py +0 -28
  62. irie/apps/inventory/migrations/0007_auto_20230731_1827.py +0 -24
  63. irie/apps/inventory/migrations/0008_asset_is_complete.py +0 -19
  64. irie/apps/inventory/migrations/0009_auto_20230731_1842.py +0 -29
  65. irie/apps/inventory/migrations/0010_auto_20230801_0025.py +0 -23
  66. irie/apps/inventory/migrations/0011_alter_asset_cgs_data.py +0 -18
  67. irie/apps/inventory/migrations/0012_corridor.py +0 -22
  68. irie/apps/inventory/migrations/0013_alter_asset_cesmd.py +0 -18
  69. irie/apps/inventory/migrations/0014_alter_asset_cesmd.py +0 -18
  70. irie/apps/inventory/migrations/__init__.py +0 -0
  71. irie/apps/networks/migrations/0001_initial.py +0 -26
  72. irie/apps/networks/migrations/__init__.py +0 -0
  73. irie/apps/prediction/migrations/0001_initial.py +0 -32
  74. irie/apps/prediction/migrations/0002_auto_20230731_1801.py +0 -27
  75. irie/apps/prediction/migrations/0003_rename_assetevaluationmodel_evaluation.py +0 -18
  76. irie/apps/prediction/migrations/0004_delete_evaluation.py +0 -16
  77. irie/apps/prediction/migrations/0005_predictormodel_protocol.py +0 -18
  78. irie/apps/prediction/migrations/0006_alter_predictormodel_protocol.py +0 -18
  79. irie/apps/prediction/migrations/0007_predictormodel_active.py +0 -19
  80. irie/apps/prediction/migrations/0008_predictormodel_description.py +0 -18
  81. irie/apps/prediction/migrations/0009_predictormodel_entry_point.py +0 -19
  82. irie/apps/prediction/migrations/0010_alter_predictormodel_entry_point.py +0 -18
  83. irie/apps/prediction/migrations/0011_remove_predictormodel_entry_point.py +0 -17
  84. irie/apps/prediction/migrations/0012_predictormodel_entry_point.py +0 -18
  85. irie/apps/prediction/migrations/0013_predictormodel_metrics.py +0 -18
  86. irie/apps/prediction/migrations/0014_auto_20240930_0004.py +0 -28
  87. irie/apps/prediction/migrations/0015_alter_predictormodel_render_file.py +0 -18
  88. irie/apps/prediction/migrations/__init__.py +0 -0
  89. irie/apps/site/migrations/__init__.py +0 -1
  90. irie-0.0.0.dist-info/RECORD +0 -145
  91. /irie/{apps/documents/migrations → init}/__init__.py +0 -0
  92. {irie-0.0.0.dist-info → irie-0.0.1.dist-info}/WHEEL +0 -0
  93. {irie-0.0.0.dist-info → irie-0.0.1.dist-info}/entry_points.txt +0 -0
  94. {irie-0.0.0.dist-info → irie-0.0.1.dist-info}/top_level.txt +0 -0
irie/init/bridges.py ADDED
@@ -0,0 +1,1098 @@
1
+ # - clean names
2
+ # - add descriptions
3
+ import sys
4
+ from math import pi
5
+
6
+ r = 12
7
+ no=190
8
+ DAMP_R1 = 0.01
9
+ THREADS = 8
10
+ LINEAR_METRICS = ["PEAK_ACCEL", "PEAK_DRIFT"] #, "ACC_RESPONSE_HISTORY"]
11
+ NONLINEAR_METRICS = ["COLUMN_STRAIN_STATES"]
12
+ SS_DEC = 1
13
+ PERIOD_BAND = [0.1, 8]
14
+ PYTHON = sys.executable
15
+
16
+ CE58658 = {
17
+ "channels": {
18
+ # channel node dof rotationangle locationname
19
+ "1": (1031, 3, 37.66*pi/180, "abutment_1"),
20
+ "2": (1031, 2, 37.66*pi/180, "abutment_1"),
21
+ "3": (1031, 1, 37.66*pi/180, "abutment_1"),
22
+ "6": (307, 1, 31.02*pi/180, "bent_3_south_column_grnd_level"),
23
+ "7": (307, 2, 31.02*pi/180, "bent_3_south_column_grnd_level"),
24
+ "11": (1030, 3, 37.66*pi/180, "deck_level_near_abut_1"),
25
+ "12": (1030, 1, 37.66*pi/180, "deck_level_near_abut_1"),
26
+ "13": (1030, 2, 37.66*pi/180, "deck_level_near_abut_1"),
27
+ "14": (304, 1, 31.02*pi/180, "bent_3_deck_level"),
28
+ "15": (304, 2, 31.02*pi/180, "bent_3_deck_level"),
29
+ # "16": (30003, 3, ((31.02+26.26)/2)*pi/180, "midspan_between_bents_3_4_deck"),
30
+ "17": (401, 1, 26.26*pi/180, "bent_4_north_column_grnd_level"),
31
+ "18": (401, 2, 26.26*pi/180, "bent_4_north_column_grnd_level"),
32
+ "19": (403, 1, 26.26*pi/180, "bent_4_north_column_top"),
33
+ "20": (403, 2, 26.26*pi/180, "bent_4_north_column_top"),
34
+ "21": (405, 3, 26.26*pi/180, "bent_4_deck_level"),
35
+ "22": (405, 1, 26.26*pi/180, "bent_4_deck_level"),
36
+ "23": (405, 2, 26.26*pi/180, "bent_4_deck_level"),
37
+ "24": (407, 1, 26.26*pi/180, "bent_4_south_column_grnd_level"),
38
+ "25": (407, 2, 26.26*pi/180, "bent_4_south_column_grnd_level")
39
+ },
40
+ "damping": {1: 0.015, 2: 0.015},
41
+ "columns": [
42
+ {'key': 2010, 'strain': True, 'label': 'Bent 2 North' },
43
+ {'key': 2020, 'strain': True, 'label': 'Bent 2 South' },
44
+ {'key': 3010, 'strain': True, 'label': 'Bent 3 North' },
45
+ {'key': 3020, 'strain': True, 'label': 'Bent 3 South' },
46
+ {'key': 4010, 'strain': True, 'label': 'Bent 4 North' },
47
+ {'key': 4020, 'strain': True, 'label': 'Bent 4 South' },
48
+ {'key': 5010, 'strain': True, 'label': 'Bent 5 North' }, {'key': 5020, 'strain': True, 'label': 'Bent 5 South'},
49
+ {'key': 6010, 'strain': True, 'label': 'Bent 6 North' }, {'key': 6020, 'strain': True, 'label': 'Bent 6 South'},
50
+ {'key': 7010, 'strain': True, 'label': 'Bent 7 North' }, {'key': 7020, 'strain': True, 'label': 'Bent 7 South'},
51
+ {'key': 8010, 'strain': True, 'label': 'Bent 8 North' }, {'key': 8020, 'strain': True, 'label': 'Bent 8 South'},
52
+ {'key': 9010, 'strain': True, 'label': 'Bent 9 North' }, {'key': 9020, 'strain': True, 'label': 'Bent 9 South'},
53
+ {'key': 10010, 'strain': True, 'label': 'Bent 10 North' }, {'key': 10020, 'strain': True, 'label': 'Bent 10 South'},
54
+ {'key': 11010, 'strain': True, 'label': 'Bent 11 North' }, {'key': 11020, 'strain': True, 'label': 'Bent 11 South'},
55
+ {'key': 12010, 'strain': True, 'label': 'Bent 12 North' }, {'key': 12020, 'strain': True, 'label': 'Bent 12 South'},
56
+ {'key': 12030, 'strain': True, 'label': 'Bent 12 Center'}, {'key': 13010, 'strain': True, 'label': 'Bent 13 South, NE Line'},
57
+ {'key': 13020, 'strain': True, 'label': 'Bent 13 North, NE Line'}, {'key': 13040, 'strain': False, 'label': 'Bent 13, NR Line'},
58
+ {'key': 14010, 'strain': True, 'label': 'Bent 14 South, NE Line'}, {'key': 14020, 'strain': True, 'label': 'Bent 14 North, NE Line'},
59
+ {'key': 14030, 'strain': True, 'label': 'Bent 14 Center, NE Line'}, {'key': 14040, 'strain': False, 'label': 'Bent 14, NR Line'}
60
+ ],
61
+ "bents": [
62
+ {'node': 203, 'record': True, 'label': 'Bent 2 North'},
63
+ {'node': 205, 'record': True, 'label': 'Bent 2 South'},
64
+ {'node': 303, 'record': True, 'label': 'Bent 3 North'},
65
+ {'node': 305, 'record': True, 'label': 'Bent 3 South'}, {'node': 403, 'record': True, 'label': 'Bent 4 North'}, {'node': 405, 'record': True, 'label': 'Bent 4 South'}, {'node': 503, 'record': True, 'label': 'Bent 5 North'}, {'node': 505, 'record': True, 'label': 'Bent 5 South'}, {'node': 603, 'record': True, 'label': 'Bent 6 North'}, {'node': 605, 'record': True, 'label': 'Bent 6 South'}, {'node': 703, 'record': True, 'label': 'Bent 7 North'}, {'node': 705, 'record': True, 'label': 'Bent 7 South'}, {'node': 803, 'record': True, 'label': 'Bent 8 North'}, {'node': 805, 'record': True, 'label': 'Bent 8 South'}, {'node': 903, 'record': True, 'label': 'Bent 9 North'}, {'node': 905, 'record': True, 'label': 'Bent 9 South'}, {'node': 1003, 'record': True, 'label': 'Bent 10 North'}, {'node': 1005, 'record': True, 'label': 'Bent 10 South'}, {'node': 1103, 'record': True, 'label': 'Bent 11 North'}, {'node': 1105, 'record': True, 'label': 'Bent 11 South'}, {'node': 1203, 'record': True, 'label': 'Bent 12 North'}, {'node': 1207, 'record': True, 'label': 'Bent 12 South'}, {'node': 1205, 'record': True, 'label': 'Bent 12 Center'}, {'node': 1303, 'record': True, 'label': 'Bent 13 South, NE Line'}, {'node': 1305, 'record': True, 'label': 'Bent 13 North, NE Line'}, {'node': 1315, 'record': True, 'label': 'Bent 13, NR Line'}, {'node': 1403, 'record': True, 'label': 'Bent 14 South, NE Line'}, {'node': 1405, 'record': True, 'label': 'Bent 14 North, NE Line'}, {'node': 1404, 'record': True, 'label': 'Bent 14 Center, NE Line'}, {'node': 1415, 'record': True, 'label': 'Bent 14, NR Line'},
66
+ # {'node': 'Max', 'record': True, 'label': 'Max'}
67
+ ]
68
+ }
69
+
70
+ BRIDGES = {
71
+ "CE13705": {
72
+ "cesmd": "CE13705",
73
+ "calid": "56-0586G (08-RIV-15-R41.57)",
74
+ "name": "Corona - I15/Hwy91 Interchange Bridge",
75
+ "accelerometers": {
76
+ "ground_channels": [1, 2, 3],
77
+ "bridge_channels": [1, 2, 3, 4, 5, 6, 7, 8, 9]
78
+ },
79
+ "predictors": [
80
+ {
81
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
82
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [3], "outputs": [9]}, # Only 2 events
83
+ },
84
+ {
85
+ "name": "SRIM_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
86
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [2], "outputs": [8]}, # Only 2 events
87
+ },
88
+ {
89
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
90
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [3], "outputs": [9]}, # Only 2 events
91
+ },
92
+ {
93
+ "name": "OKID_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
94
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [2], "outputs": [8]}, # Only 2 events
95
+ },
96
+ {
97
+ "name": "FDD_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
98
+ "config": {"period_band": PERIOD_BAND, "outputs": [9]},
99
+ },
100
+ {
101
+ "name": "FDD_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
102
+ "config": {"period_band": PERIOD_BAND, "outputs": [8]},
103
+ },
104
+ {
105
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
106
+ "config": {"period_band": PERIOD_BAND, "inputs": [3], "outputs": [9]},
107
+ },
108
+ {
109
+ "name": "FSTF_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
110
+ "config": {"period_band": PERIOD_BAND, "inputs": [2], "outputs": [8]},
111
+ },
112
+ {
113
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
114
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [3], "outputs": [9]},
115
+ },
116
+ {
117
+ "name": "RSTF_long", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
118
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [2], "outputs": [8]},
119
+ }
120
+ ]
121
+ },
122
+ "CE14406": {
123
+ "cesmd": "CE14406",
124
+ "calid": "53-1471 (07-LA-47-0.86)",
125
+ "name": "Los Angeles - Vincent Thomas Bridge",
126
+ "accelerometers": {
127
+ "ground_channels": [1, 14, 23, 3, 9, 13, 19, 20, 24, 25, 26],
128
+ "bridge_channels": [2, 4, 5, 6, 12, 7, 8, 10, 11, 15, 16, 17, 18, 21, 22, 3, 24, 25, 26]
129
+ },
130
+ "predictors": [
131
+ {
132
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
133
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [1,9,24], "outputs": [2,5,7]},
134
+ },
135
+ {
136
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
137
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [1,9,24], "outputs": [2,5,7]},
138
+ },
139
+ {
140
+ "name": "FDD_tran", "description": "Transverse configuration", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
141
+ "config": {"period_band": PERIOD_BAND, "outputs": [2,5,7]},
142
+ },
143
+ {
144
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
145
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [24], "outputs": [3]},
146
+ },
147
+ {
148
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
149
+ "config": {"period_band": PERIOD_BAND, "inputs": [24], "outputs": [3]},
150
+ },
151
+ # {
152
+ # "name": "SRIM_tran2", "description": "Transverse with dense sensor configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
153
+ # "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [1,9,24], "outputs": [2,4,5,6,7]},
154
+ # },
155
+ {
156
+ "name": "SRIM_vert", "description": "Vertical Configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
157
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [14,19,26], "outputs": [16,18,22]},
158
+ },
159
+ {
160
+ "name": "OKID_vert", "description": "Vertical Configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
161
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [14,19,26], "outputs": [16,18,22]},
162
+ },
163
+ {
164
+ "name": "FDD_vert", "description": "Vertical Configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
165
+ "config": {"period_band": PERIOD_BAND, "outputs": [16,18,22]},
166
+ },
167
+ ]
168
+ },
169
+ "CE24704": {
170
+ "cesmd": "CE24704",
171
+ "calid": "53-2791 (07-LA-10-8.8)",
172
+ "name": "Los Angeles - I10/La Cienega Bridge",
173
+ "accelerometers": {
174
+ "ground_channels": [9, 10, 11],
175
+ "bridge_channels": [1, 2, 3, 4, 5, 6, 7, 8, 12, 13, 14, 15]
176
+ },
177
+ "predictors": [
178
+ {
179
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
180
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [10], "outputs": [5,8,12]},
181
+ },
182
+ {
183
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
184
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [10], "outputs": [5,8,12]},
185
+ },
186
+ {
187
+ "name": "FDD_tran", "description": "Transverse configuration", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
188
+ "config": {"period_band": PERIOD_BAND, "outputs": [5,8,12]},
189
+ },
190
+ {
191
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
192
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [10], "outputs": [8]},
193
+ },
194
+ {
195
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
196
+ "config": {"period_band": PERIOD_BAND, "inputs": [10], "outputs": [8]},
197
+ },
198
+ ]
199
+ },
200
+ "CE24706": {
201
+ "cesmd": "CE24706",
202
+ "calid": "53-1794 (07-LA-14-R57.37)",
203
+ "name": "Palmdale - Hwy 14/Barrel Springs Bridge",
204
+ "accelerometers": {
205
+ "ground_channels": [11, 12],
206
+ "bridge_channels": [4, 5, 6, 7, 8, 9, 10]
207
+ },
208
+ "predictors": [
209
+ {
210
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
211
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [11], "outputs": [6,8,9]},
212
+ },
213
+ {
214
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
215
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [11], "outputs": [6,8,9]},
216
+ },
217
+ {
218
+ "name": "FDD_tran", "description": "Transverse configuration", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
219
+ "config": {"period_band": PERIOD_BAND, "outputs": [6,8,9]},
220
+ },
221
+ {
222
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
223
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [11], "outputs": [9]},
224
+ },
225
+ {
226
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
227
+ "config": {"period_band": PERIOD_BAND, "inputs": [11], "outputs": [9]},
228
+ }
229
+ ]
230
+ },
231
+ "CE24775": {
232
+ "cesmd": "CE24775",
233
+ "calid": "50-0271 (06-KER-5-4.1)",
234
+ "name": "Grapevine - I5/Lebec Rd Bridge",
235
+ "accelerometers": {
236
+ "ground_channels": [14],
237
+ "bridge_channels": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16]
238
+ },
239
+ "predictors": [
240
+ {
241
+ "name": "SRIM_tran", "description": "Transverse configuration._deck", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
242
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [14], "outputs": [6,9,15]},
243
+ },
244
+ {
245
+ "name": "OKID_tran", "description": "Transverse configuration._deck", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
246
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [14], "outputs": [6,9,15]},
247
+ },
248
+ {
249
+ "name": "FDD_tran", "description": "Transverse configuration._deck", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
250
+ "config": {"period_band": PERIOD_BAND, "outputs": [6,9,15]},
251
+ },
252
+ {
253
+ "name": "RSTF_tran", "description": "Transverse configuration._deck", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
254
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [14], "outputs": [9]},
255
+ },
256
+ {
257
+ "name": "FSTF_tran", "description": "Transverse configuration._deck", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
258
+ "config": {"period_band": PERIOD_BAND, "inputs": [14], "outputs": [9]},
259
+ },
260
+ # {
261
+ # "name": "SRIM_tran2", "description": "Transverse configuration._center_wall", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
262
+ # "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [14], "outputs": [12,9]},
263
+ # }
264
+ ]
265
+ },
266
+ "CE47315": {
267
+ "cesmd": "CE47315",
268
+ "calid": "43-0031E (05-SBT-156-0.00)",
269
+ "name": "San Juan Bautista - Hwy 101/156 Overpass",
270
+ "accelerometers": {
271
+ "ground_channels": [4, 5, 6, 1, 2, 3, 10, 11, 12],
272
+ "bridge_channels": [1, 2, 3, 7, 8, 9, 10, 11, 12, 13, 14, 15, 4, 5, 6]
273
+ },
274
+ "predictors": [
275
+ {
276
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
277
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [6], "outputs": [11,8]},
278
+ },
279
+ {
280
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
281
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [6], "outputs": [11,8]},
282
+ },
283
+ {
284
+ "name": "FDD_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
285
+ "config": {"period_band": PERIOD_BAND, "decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [6], "outputs": [11,8]},
286
+ },
287
+ {
288
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
289
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [6], "outputs": [11]},
290
+ },
291
+ {
292
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
293
+ "config": {"period_band": PERIOD_BAND, "inputs": [6], "outputs": [11]},
294
+ },
295
+ # {
296
+ # "name": "SRIM_tran2", "description": "Transverse configuration._dense", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
297
+ # "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [6], "outputs": [13,11,8]},
298
+ # }
299
+ ]
300
+ },
301
+ "CE68185": { # (Alfred Zampa Memorial Bridge) (Carquinez West, Southbound, Suspension)
302
+ "cesmd": "CE68185",
303
+ "calid": "28-0352L (04-SOL-80-0.01)",
304
+ "name": "Vallejo - Carquinez/I80 West Bridge",
305
+ "accelerometers": {
306
+ "ground_channels": [19, 20, 21, 22, 23, 24, 25, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 81, 82, 83, 87, 88, 93, 94],
307
+ "bridge_channels": [26, 27, 28, 29, 32, 33, 34, 35, 36, 37, 38, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 63, 64, 65, 66, 67, 68, 70, 71, 72, 75, 78, 79, 80, 85, 86, 89, 90, 91, 95, 97, 98, 99, 100, 101, 102, 103, 1, 2, 3, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 73, 74, 76]
308
+ },
309
+ "predictors": [
310
+ {
311
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
312
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [76], "outputs": [35]},
313
+ },
314
+ {
315
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
316
+ "config": {"period_band": PERIOD_BAND, "inputs": [76], "outputs": [35]},
317
+ },
318
+ {
319
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
320
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [72,56,22], "outputs": [51,39,35,29]},
321
+ },
322
+ {
323
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
324
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [72,56,22], "outputs": [51,39,35,29]},
325
+ },
326
+ {
327
+ "name": "FDD_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
328
+ "config": {"period_band": PERIOD_BAND, "outputs": [51,39,35,29]},
329
+ },
330
+ {
331
+ "name": "SRIM_tran2", "description": "Transverse with dense sensor configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
332
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [76,72,56,22,3], "outputs": [68,65,51,39,35,29,17,7]},
333
+ },
334
+ {
335
+ "name": "SRIM_vert", "description": "Vertical configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
336
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [75,71,55,21,2], "outputs": [63,64,37,38,32,33,27,28,5,6]},
337
+ },
338
+ {
339
+ "name": "OKID_vert", "description": "Vertical configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
340
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [75,71,55,21,2], "outputs": [63,64,37,38,32,33,27,28,5,6]},
341
+ },
342
+ {
343
+ "name": "FDD_vert", "description": "Vertical configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
344
+ "config": {"period_band": PERIOD_BAND, "outputs": [63,64,37,38,32,33,27,28,5,6]},
345
+ }
346
+ ]
347
+ },
348
+ "CE68184": { # (Carquinez East, Northbound)
349
+ "cesmd": "CE68184",
350
+ "calid": "23-0015R (04-SOL-80-12.8)",
351
+ "name": "Vallejo - Carquinez/I80 East Bridge",
352
+ "accelerometers": {
353
+ "ground_channels": [12, 13, 28, 29, 30, 31, 32, 33, 42, 43, 44, 45, 46, 47, 48],
354
+ "bridge_channels": [4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 17, 18, 16, 19, 20, 21, 22, 23, 24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 40, 41, 49, 50, 51, 52, 53, 54, 55, 56]
355
+ },
356
+ "predictors": [
357
+ {
358
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
359
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [48,46,32,33], "outputs": [56,41,35,27,26,21,18,11]},
360
+ "tags": ["TRANSVERSE", "STATE_SPACE"]
361
+ },
362
+ {
363
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
364
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [48,46,32,33], "outputs": [56,41,35,27,26,21,18,11]},
365
+ "tags": ["TRANSVERSE", "STATE_SPACE"]
366
+ },
367
+ {
368
+ "name": "FDD_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
369
+ "config": {"period_band": PERIOD_BAND, "outputs": [56,41,35,27,26,21,18,11]},
370
+ },
371
+ {
372
+ "name": "SRIM_vert", "description": "Vertical configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
373
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [43,42,30,28], "outputs": [34,24,20,17,9]},
374
+ "tags": ["VERTICAL", "STATE_SPACE"]
375
+ },
376
+ {
377
+ "name": "OKID_vert", "description": "Vertical configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
378
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [43,42,30,28], "outputs": [34,24,20,17,9]},
379
+ "tags": ["VERTICAL", "STATE_SPACE"]
380
+ },
381
+ {
382
+ "name": "FDD_vert", "description": "Vertical configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
383
+ "config": {"period_band": PERIOD_BAND, "outputs": [34,24,20,17,9]},
384
+ },
385
+ {
386
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
387
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [32], "outputs": [26]},
388
+ },
389
+ {
390
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
391
+ "config": {"period_band": PERIOD_BAND, "inputs": [32], "outputs": [26]},
392
+ }
393
+ ]
394
+ },
395
+ "CE79421": {
396
+ "cesmd": "CE79421",
397
+ "calid": "10-0299 (01-MEN-101-160.03)",
398
+ "name": "Leggett - Hwy 101/Confusion Hill Bridge",
399
+ "accelerometers": {
400
+ "ground_channels": [6, 7, 13, 14],
401
+ "bridge_channels": [1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 15, 16, 17, 18, 19, 20, 21]
402
+ },
403
+ "predictors": [
404
+ {
405
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
406
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [7,14,20], "outputs": [2,4,8,11,17]},
407
+ "tags": ["TRANSVERSE", "STATE_SPACE"]
408
+ },
409
+ {
410
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
411
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [7,14,20], "outputs": [2,4,8,11,17]},
412
+ "tags": ["TRANSVERSE", "STATE_SPACE"]
413
+ },
414
+ {
415
+ "name": "FDD", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
416
+ "config": {"period_band": PERIOD_BAND, "outputs": [2,4,8,11,17]},
417
+ },
418
+ {
419
+ "name": "SRIM_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
420
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [6,13,19], "outputs": [3,10]},
421
+ "tags": ["LONGITUDINAL", "STATE_SPACE"]
422
+ },
423
+ {
424
+ "name": "OKID_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
425
+ "config": {"outputs": [3,10]},
426
+ "tags": ["LONGITUDINAL", "STATE_SPACE"]
427
+ },
428
+ {
429
+ "name": "FDD_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
430
+ "config": {"period_band": PERIOD_BAND, "outputs": [3,10]},
431
+ },
432
+ {
433
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
434
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [14], "outputs": [8]},
435
+ "tags": ["TRANSVERSE", "RESPONSE_SPECTRUM"]
436
+ },
437
+ {
438
+ "name": "RSTF_long", "description": "Longitudinal configuration at the southwest (Willits) side.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
439
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [6], "outputs": [3]},
440
+ "tags": ["LONGITUDINAL", "RESPONSE_SPECTRUM"]
441
+ },
442
+ {
443
+ "name": "RSTF_long2", "description": "Longitudinal configuration at the northeast (Garberville) side.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
444
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [13], "outputs": [10]},
445
+ "tags": ["LONGITUDINAL", "RESPONSE_SPECTRUM"]
446
+ },
447
+ {
448
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
449
+ "config": {"period_band": PERIOD_BAND, "inputs": [14], "outputs": [8]},
450
+ "tags": ["TRANSVERSE", "FOURIER"]
451
+ }
452
+ ]
453
+ },
454
+ "CE89708": {
455
+ "cesmd": "CE89708",
456
+ "calid": "04-0170 (01-HUM-101-R92.99)",
457
+ "name": "Arcata - Hwy 101/Murray Road Bridge",
458
+ "accelerometers": {
459
+ "ground_channels": [10, 11],
460
+ "bridge_channels": [4, 5, 6, 7, 8, 9, 12]
461
+ },
462
+ "predictors": [
463
+ {
464
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
465
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [10], "outputs": [7,9,12]},
466
+ },
467
+ {
468
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
469
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [10], "outputs": [7,9,12]},
470
+ },
471
+ {
472
+ "name": "FDD_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
473
+ "config": {"period_band": PERIOD_BAND, "outputs": [7,9,12]},
474
+ },
475
+ {
476
+ "name": "SRIM_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
477
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [11], "outputs": [8]},
478
+ },
479
+ {
480
+ "name": "OKID_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
481
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [11], "outputs": [8]},
482
+ },
483
+ {
484
+ "name": "FDD_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
485
+ "config": {"period_band": PERIOD_BAND, "outputs": [8]},
486
+ },
487
+ {
488
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
489
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [10], "outputs": [9]},
490
+ },
491
+ {
492
+ "name": "RSTF_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
493
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [11], "outputs": [8]},
494
+ },
495
+ {
496
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
497
+ "config": {"period_band": PERIOD_BAND, "inputs": [10], "outputs": [9]},
498
+ },
499
+ {
500
+ "name": "FSTF_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
501
+ "config": {"period_band": PERIOD_BAND, "inputs": [11], "outputs": [8]},
502
+ },
503
+ ]
504
+ },
505
+ "CE89735": {
506
+ "cesmd": "CE89735",
507
+ "calid": "04-0229 (01-HUM-255-0.7)",
508
+ "name": "Eureka - Middle Channel Bridge",
509
+ "accelerometers": {
510
+ "ground_channels": [12, 13, 16, 17],
511
+ "bridge_channels": [1, 2, 3, 4, 5, 6, 10, 11, 14, 15]
512
+ },
513
+ "predictors": [
514
+ {
515
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
516
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [12,16], "outputs": [10,14,3]},
517
+ },
518
+ {
519
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
520
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [12,16], "outputs": [10,14,3]},
521
+ },
522
+ {
523
+ "name": "FDD_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
524
+ "config": {"period_band": PERIOD_BAND, "outputs": [10,14,3]},
525
+ },
526
+ {
527
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
528
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [12], "outputs": [10]},
529
+ },
530
+ {
531
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
532
+ "config": {"period_band": PERIOD_BAND, "inputs": [12], "outputs": [10]},
533
+ }
534
+ ]
535
+ },
536
+ "CE89736": {
537
+ "cesmd": "CE89736",
538
+ "calid": "04-0230 (01-HUM-255-0.2)",
539
+ "name": "Eureka - Eureka Channel Bridge",
540
+ "accelerometers": {
541
+ "ground_channels": [6, 7, 1, 2, 3, 22, 23, 24, 25, 26, 27],
542
+ "bridge_channels": [4, 5, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 21]
543
+ },
544
+ "predictors": [
545
+ {
546
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
547
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [7,3], "outputs": [9,21,19]},
548
+ },
549
+ {
550
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
551
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [7,3], "outputs": [9,21,19]},
552
+ },
553
+ {
554
+ "name": "FDD_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
555
+ "config": {"period_band": PERIOD_BAND, "outputs": [9,21,19]},
556
+ },
557
+ {
558
+ "name": "SRIM_tran2", "description": "Transverse with dense sensor configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
559
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [7,3], "outputs": [9,5,21,19]},
560
+ },
561
+ {
562
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
563
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [7], "outputs": [9]},
564
+ },
565
+ {
566
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
567
+ "config": {"period_band": PERIOD_BAND, "inputs": [7], "outputs": [9]},
568
+ }
569
+ ]
570
+ },
571
+ "CE89973": {
572
+ "cesmd": "CE89973",
573
+ "calid": "04-0016R (01-HUM-101-53.9)",
574
+ "Location": "40.5093 N, 124.1196 W",
575
+ "name": "Rio Dell - Hwy 101/Eel River Bridge",
576
+ "accelerometers": {
577
+ "ground_channels": [],
578
+ "bridge_channels": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
579
+ },
580
+ "predictors": [
581
+ {
582
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
583
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [4,11,16], "outputs": [7,10,13,14,18]},
584
+ },
585
+ {
586
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
587
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [4,11,16], "outputs": [7,10,13,14,18]},
588
+ },
589
+ {
590
+ "name": "FDD_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
591
+ "config": {"period_band": PERIOD_BAND, "outputs": [7,10,13,14,18]},
592
+ },
593
+ {
594
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
595
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [11], "outputs": [13]},
596
+ },
597
+ {
598
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
599
+ "config": {"period_band": PERIOD_BAND, "inputs": [11], "outputs": [13]},
600
+ }
601
+ ]
602
+ },
603
+ "CE33742": { # ridgecrest
604
+ "cesmd": "CE33742",
605
+ "calid": "50-0340 (09-KER-395-R25.08)",
606
+ "name": "Ridgecrest - Hwy 395/Brown Road Bridge",
607
+ "accelerometers": {
608
+ "ground_channels": [4, 5],
609
+ "bridge_channels": [6, 7, 8, 9]
610
+ },
611
+ "predictors": [
612
+ {
613
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
614
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [4], "outputs": [6, 7, 9]},
615
+ },
616
+ {
617
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
618
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [4], "outputs": [6, 7, 9]},
619
+ },
620
+ {
621
+ "name": "FDD_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
622
+ "config": {"period_band": PERIOD_BAND, "outputs": [6, 7, 9]},
623
+ },
624
+ {
625
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
626
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [4], "outputs": [7]},
627
+ },
628
+ {
629
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
630
+ "config": {"period_band": PERIOD_BAND, "inputs": [4], "outputs": [7]},
631
+ }
632
+ ]
633
+ },
634
+ "CE24694": { # sylmar
635
+ "cesmd": "CE24694",
636
+ "calid": "53-2795F",
637
+ "Location": "34.3349 N, 118.5084 W",
638
+ "name": "Sylmar - I5/14 Interchange Bridge",
639
+ "accelerometers": {
640
+ "ground_channels": [10, 11, 18, 19, 20, 21, 22, 23, 24, 38, 39],
641
+ "bridge_channels": [1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37]
642
+ },
643
+ "predictors": [
644
+ {
645
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
646
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [10,18], "outputs": [7,8,12,14,27]}, # No events
647
+ },
648
+ {
649
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
650
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [10,18], "outputs": [7,8,12,14,27]}, # No events
651
+ },
652
+ {
653
+ "name": "FDD_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
654
+ "config": {"period_band": PERIOD_BAND, "outputs": [7,8,12,14,27]}, # No events
655
+ },
656
+ {
657
+ "name": "SRIM_tran2", "description": "Transverse configuration._dense",
658
+ "protocol": "",
659
+ "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],
660
+ "entry_point": [PYTHON, "-m", "mdof", "srim"],
661
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [1,10,18,33], "outputs": [3,5,6,7,8,12,14,27,28,29,30]},
662
+ },
663
+ {
664
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
665
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [18], "outputs": [14]},
666
+ },
667
+ {
668
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
669
+ "config": {"period_band": PERIOD_BAND, "inputs": [18], "outputs": [14]},
670
+ }
671
+ ]
672
+ },
673
+ "CE13795": { # capistrano
674
+ "cesmd": "CE13795",
675
+ "calid": "55-0225 (07-ORA-5-6.62)",
676
+ "name": "Capistrano Beach - I5/Via Calif. Bridge",
677
+ "accelerometers": {
678
+ "ground_channels": [4, 5],
679
+ "bridge_channels": [6, 7, 8, 9, 10, 11, 12]
680
+ },
681
+ "predictors": [
682
+ {
683
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
684
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [4], "outputs": [10, 7]},
685
+ },
686
+ {
687
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
688
+ "config": {"outputs": [10, 7]},
689
+ },
690
+ {
691
+ "name": "FDD_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
692
+ "config": {"period_band": PERIOD_BAND, "decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [4], "outputs": [10, 7]},
693
+ },
694
+ {
695
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
696
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [4], "outputs": [10]},
697
+ },
698
+ {
699
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
700
+ "config": {"period_band": PERIOD_BAND, "inputs": [4], "outputs": [10]},
701
+ }
702
+ ]
703
+ },
704
+ "CE01336": { # meloland
705
+ "cesmd": "CE01336",
706
+ "calid": "58-0215",
707
+ "Location": "32.7735 N, 115.4481 W",
708
+ "name": "Hwy8/Meloland Overpass",
709
+ "accelerometers": {
710
+ "ground_channels": [1, 2, 4, 10, 11, 12, 23, 25, 26, 30],
711
+ "bridge_channels": [3, 5, 6, 7, 8, 13, 9, 16, 17, 18, 19, 27, 20, 21, 22, 28, 31, 29, 32]
712
+ },
713
+ "predictors": [
714
+ {
715
+ "name": "SRIM_tran", "description": "Transverse configuration.",
716
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [2], "outputs": [5, 7, 9]},
717
+ "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"]
718
+ },
719
+ {
720
+ "name": "OKID_tran", "description": "Transverse configuration.",
721
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [2], "outputs": [5, 7, 9]},
722
+ "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"]
723
+ },
724
+ {
725
+ "name": "FDD_tran", "description": "Transverse configuration.",
726
+ "config": {"period_band": PERIOD_BAND, "outputs": [5, 7, 9]},
727
+ "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"]
728
+ },
729
+ {
730
+ "name": "SRIM_long", "description": "Longitudinal configuration.",
731
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [4], "outputs": [15]},
732
+ "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"]
733
+ },
734
+ {
735
+ "name": "OKID_long", "description": "Longitudinal configuration.",
736
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [4], "outputs": [15]},
737
+ "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"]
738
+ },
739
+ {
740
+ "name": "FDD_long", "description": "Longitudinal configuration.",
741
+ "config": {"period_band": PERIOD_BAND, "decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [4], "outputs": [15]},
742
+ "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"]
743
+ },
744
+ {
745
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
746
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [2], "outputs": [7]},
747
+ },
748
+ {
749
+ "name": "RSTF_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
750
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [4], "outputs": [15]},
751
+ },
752
+ {
753
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
754
+ "config": {"period_band": PERIOD_BAND, "inputs": [2], "outputs": [7]},
755
+ },
756
+ {
757
+ "name": "FSTF_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
758
+ "config": {"period_band": PERIOD_BAND, "inputs": [4], "outputs": [15]},
759
+ },
760
+ {
761
+ "name": "SRIM_tran2", "description": "Transverse with sparse sensor configuration.",
762
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [2], "outputs": [7]},
763
+ "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"]
764
+ },
765
+ ]
766
+ },
767
+ "CE54730": { # crowley
768
+ "cesmd": "CE54730",
769
+ "calid": "47-0048",
770
+ "Location": "37.5733 N, 118.7390 W",
771
+ "name": "Lake Crowley - Hwy 395 Bridge",
772
+ "accelerometers": {
773
+ "ground_channels": [4, 5],
774
+ "bridge_channels": [6, 7, 8, 9]
775
+ },
776
+ "predictors": [
777
+ {
778
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
779
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [4], "outputs": [6, 7, 9]},
780
+ },
781
+ {
782
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
783
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [4], "outputs": [6, 7, 9]},
784
+ },
785
+ {
786
+ "name": "FDD_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
787
+ "config": {"period_band": PERIOD_BAND, "outputs": [6, 7, 9]},
788
+ },
789
+ {
790
+ "name": "SRIM_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
791
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [5], "outputs": [8]},
792
+ },
793
+ {
794
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
795
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [4], "outputs": [7]},
796
+ },
797
+ {
798
+ "name": "RSTF_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
799
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [5], "outputs": [8]},
800
+ },
801
+ {
802
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
803
+ "config": {"period_band": PERIOD_BAND, "inputs": [4], "outputs": [7]},
804
+ },
805
+ {
806
+ "name": "FSTF_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
807
+ "config": {"period_band": PERIOD_BAND, "inputs": [5], "outputs": [8]},
808
+ },
809
+ ],
810
+ },
811
+ "CE89686": {
812
+ "cesmd": "CE89686",
813
+ "calid": "04-0228",
814
+ "name": "Eureka - Samoa Channel Bridge",
815
+ "accelerometers": {
816
+ "ground_channels": [7, 8, 9, 17, 28, 29, 30, 31, 32, 33, 16],
817
+ "bridge_channels": [1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 14, 15, 18, 19, 20, 21, 22, 23, 24]
818
+ },
819
+ "predictors": [
820
+ {
821
+ "name": "SRIM_tran", "description": "Transverse configuration.",
822
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [8,16], "outputs": [10,12,21]}, "protocol": "", "metrics": {"SPECTRAL_SHIFT_IDENTIFICATION"},"entry_point": [PYTHON, "-m", "mdof", "srim"],
823
+ }, # Ch16 has 9 events but the rest have at least 11
824
+ {
825
+ "name": "OKID_tran", "description": "Transverse configuration.",
826
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [8,16], "outputs": [10,12,21]}, "protocol": "", "metrics": {"SPECTRAL_SHIFT_IDENTIFICATION"},"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
827
+ }, # Ch16 has 9 events but the rest have at least 11
828
+ {
829
+ "name": "FDD_tran", "description": "Transverse configuration.",
830
+ "config": {"period_band": PERIOD_BAND, "outputs": [10,12,21]}, "protocol": "", "metrics": {"SPECTRAL_SHIFT_IDENTIFICATION"},"entry_point": [PYTHON, "-m", "mdof", "fdd"],
831
+ }, # Ch16 has 9 events but the rest have at least 11
832
+ {
833
+ "name": "SRIM_tran2", "description": "Transverse configuration at Pier 8.",
834
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [8], "outputs": [10,12]}, "protocol": "", "metrics": {"SPECTRAL_SHIFT_IDENTIFICATION"},"entry_point": [PYTHON, "-m", "mdof", "srim"],
835
+ },
836
+ {
837
+ "name": "RSTF_tran", "description": "Transverse configuration at Pier 8.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
838
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [8], "outputs": [10]},
839
+ },
840
+ {
841
+ "name": "FSTF_tran", "description": "Transverse configuration at Pier 8.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
842
+ "config": {"period_band": PERIOD_BAND, "inputs": [8], "outputs": [10]},
843
+ }
844
+ ],
845
+ },
846
+ "CE89324": { # painter
847
+ "cesmd": "CE89324",
848
+ "calid": "04-0236",
849
+ "Location": "40.5031 N, 124.1009 W",
850
+ "name": "Rio Dell - Hwy 101/Painter St. Overcrossing",
851
+ "accelerometers": {
852
+ "ground_channels": [1, 2, 3, 15, 16, 17, 18, 19, 20],
853
+ "bridge_channels": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
854
+ },
855
+ "predictors": [
856
+ {
857
+ "name": "SRIM_tran", "description": "Transverse configuration.",
858
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [17,3,20], "outputs": [9,7,4]}, "protocol": "", "metrics": {"SPECTRAL_SHIFT_IDENTIFICATION"},"entry_point": [PYTHON, "-m", "mdof", "srim"],
859
+ },
860
+ {
861
+ "name": "OKID_tran", "description": "Transverse configuration.",
862
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [17,3,20], "outputs": [9,7,4]}, "protocol": "", "metrics": {"SPECTRAL_SHIFT_IDENTIFICATION"},"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
863
+ },
864
+ {
865
+ "name": "FDD_tran", "description": "Transverse configuration.",
866
+ "config": {"period_band": PERIOD_BAND, "outputs": [9,7,4]}, "protocol": "", "metrics": {"SPECTRAL_SHIFT_IDENTIFICATION"},"entry_point": [PYTHON, "-m", "mdof", "fdd"],
867
+ },
868
+ {
869
+ "name": "SRIM_long", "description": "Longitudinal configuration.", # Sensor 11 may not be far enough away from the substructure for this configuration to be meaningful.
870
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [18], "outputs": [11]}, "protocol": "", "metrics": {"SPECTRAL_SHIFT_IDENTIFICATION"},"entry_point": [PYTHON, "-m", "mdof", "srim"],
871
+ },
872
+ {
873
+ "name": "OKID_long", "description": "Longitudinal configuration.", # Sensor 11 may not be far enough away from the substructure for this configuration to be meaningful.
874
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [18], "outputs": [11]}, "protocol": "", "metrics": {"SPECTRAL_SHIFT_IDENTIFICATION"},"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
875
+ },
876
+ {
877
+ "name": "FDD_long", "description": "Longitudinal configuration.", # Sensor 11 may not be far enough away from the substructure for this configuration to be meaningful.
878
+ "config": {"period_band": PERIOD_BAND, "outputs": [11]}, "protocol": "", "metrics": {"SPECTRAL_SHIFT_IDENTIFICATION"},"entry_point": [PYTHON, "-m", "mdof", "fdd"],
879
+ },
880
+ {
881
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
882
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [3], "outputs": [7]},
883
+ },
884
+ {
885
+ "name": "RSTF_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
886
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [18], "outputs": [11]},
887
+ },
888
+ {
889
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
890
+ "config": {"period_band": PERIOD_BAND, "inputs": [3], "outputs": [7]},
891
+ },
892
+ {
893
+ "name": "FSTF_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
894
+ "config": {"period_band": PERIOD_BAND, "inputs": [18], "outputs": [11]},
895
+ }
896
+ ],
897
+ },
898
+ "CE23631": { # bernardino
899
+ "cesmd": "CE23631",
900
+ "calid": "54-0823G",
901
+ "Location": "34.0650 N, 117.2962 W",
902
+ "name": "San Bernardino - I10/215 Interchange",
903
+ "accelerometers": {
904
+ "ground_channels": [4, 6, 5, 22, 23, 24],
905
+ "bridge_channels": [1, 2, 3, 7, 10, 8, 9, 11, 12, 13, 14, 15, 16, 17, 19, 18, 20, 25, 26, 28, 29, 30, 33, 31, 32, 34, 35, 36]
906
+ },
907
+ "predictors": [
908
+ {
909
+ "name": "SRIM_tran", "description": "Transverse with sparse sensor configuration.",
910
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [24], "outputs": [11,19,20,25]}, "protocol": "", "metrics": {"SPECTRAL_SHIFT_IDENTIFICATION"},"entry_point": [PYTHON, "-m", "mdof", "srim"],
911
+ },
912
+ {
913
+ "name": "OKID_tran", "description": "Transverse with sparse sensor configuration.",
914
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [24], "outputs": [11,19,20,25]}, "protocol": "", "metrics": {"SPECTRAL_SHIFT_IDENTIFICATION"},"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
915
+ },
916
+ {
917
+ "name": "FDD_tran", "description": "Transverse with sparse sensor configuration.",
918
+ "config": {"period_band": PERIOD_BAND, "outputs": [11,19,20,25]}, "protocol": "", "metrics": {"SPECTRAL_SHIFT_IDENTIFICATION"},"entry_point": [PYTHON, "-m", "mdof", "fdd"],
919
+ },
920
+ {
921
+ "name": "SRIM_tran2", "description": "Transverse with dense sensor configuration.",
922
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [3,6,24], "outputs": [7,8,11,19,20,25,26,29,30,31,32,36]}, "protocol": "", "metrics": {"SPECTRAL_SHIFT_IDENTIFICATION"},"entry_point": [PYTHON, "-m", "mdof", "srim"],
923
+ },
924
+ {
925
+ "name": "RSTF_tran", "description": "Transverse with dense sensor configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
926
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [24], "outputs": [20]},
927
+ },
928
+ {
929
+ "name": "FSTF_tran", "description": "Transverse with dense sensor configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
930
+ "config": {"period_band": PERIOD_BAND, "inputs": [24], "outputs": [20]},
931
+ }
932
+ ],
933
+ },
934
+ "CE58658": { # hayward
935
+ "digital_twin": True,
936
+ "cesmd": "CE58658",
937
+ "calid": "33-0214L",
938
+ "Location": "37.6907 N, 122.0993 W",
939
+ "name": "Hayward Hwy 580-238 Interchange",
940
+ "accelerometers": {
941
+ "ground_channels": [6, 7, 17, 18, 24, 25],
942
+ "bridge_channels": [1, 2, 3, 4, 5, 11, 12, 13, 14, 15, 16, 19, 20, 21, 22, 23]
943
+ },
944
+ # "accelerometers": {
945
+ # "ground_channels": [1, 2, 3, 6, 7, 17, 18, 24, 25],
946
+ # "bridge_channels": [11, 12, 13, 14, 15, 16, 19, 20, 21, 22, 23],
947
+ # },
948
+ "predictors": [
949
+ {
950
+ "name": f"Linear",
951
+ "metrics": [*LINEAR_METRICS],
952
+ "protocol": "BRACE2_CLI_PREDICTOR_V1",
953
+ "entry_point": [PYTHON, "-mCE58658", f"Procedures/linear.tcl"],
954
+ "platform": "OpenSees",
955
+ "active": False,
956
+ "config": CE58658
957
+ },
958
+ {
959
+ "name": f"OpenSees",
960
+ "metrics": [*LINEAR_METRICS, *NONLINEAR_METRICS],
961
+ "protocol": "BRACE2_CLI_PREDICTOR_V1",
962
+ "entry_point": [PYTHON, "-mCE58658", f"Procedures/nonlinear.tcl"],
963
+ "platform": "OpenSees",
964
+ "active": False,
965
+ "config": CE58658
966
+ },
967
+ {
968
+ "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
969
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [2,7,25,18], "outputs": [13,15,23,20]},
970
+ },
971
+ {
972
+ "name": "OKID_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
973
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [2,7,25,18], "outputs": [13,15,23,20]},
974
+ },
975
+ {
976
+ "name": "FDD_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
977
+ "config": {"period_band": PERIOD_BAND, "outputs": [13,15,23,20]},
978
+ },
979
+ {
980
+ "name": "SRIM_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
981
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [3, 6, 17], "outputs": [12, 14, 19]},
982
+ },
983
+ {
984
+ "name": "OKID_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "okid-era"],
985
+ "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [3, 6, 17], "outputs": [12, 14, 19]},
986
+ },
987
+ {
988
+ "name": "FDD_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fdd"],
989
+ "config": {"period_band": PERIOD_BAND, "outputs": [12, 14, 19]},
990
+ },
991
+ {
992
+ "name": "RSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
993
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [25], "outputs": [23]},
994
+ },
995
+ {
996
+ "name": "RSTF_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "response"],
997
+ "config": {"period_band": PERIOD_BAND, "threads": THREADS, "damping": DAMP_R1, "inputs": [3], "outputs": [12]},
998
+ },
999
+ {
1000
+ "name": "FSTF_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
1001
+ "config": {"period_band": PERIOD_BAND, "inputs": [25], "outputs": [23]},
1002
+ },
1003
+ {
1004
+ "name": "FSTF_long", "description": "Longitudinal configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "fourier"],
1005
+ "config": {"period_band": PERIOD_BAND, "inputs": [3], "outputs": [12]},
1006
+ },
1007
+ ]
1008
+ },
1009
+ # "CE68682": {
1010
+ # "cesmd": "CE68682",
1011
+ # "calid": "28-0153 (04-CC-68-25.04)"},
1012
+
1013
+ # "CE58600": {
1014
+ # "cesmd": "CE58600",
1015
+ # "calid": "34-0006 (04-SF-80-13.2)",
1016
+ # "name": "Oakland - SF Bay Bridge/East: SAS",
1017
+ # "predictors": [
1018
+ # {
1019
+ # "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"], "entry_point": [PYTHON, "-m", "mdof", "srim"],
1020
+ # "config": {
1021
+ # "--decimate", SS_DEC, "--ss-size", 12, "--arx-order", 190,
1022
+ # "--inputs", "[4,28,71]", "--outputs", "[9,33,51,71]"
1023
+ # ],
1024
+ # }
1025
+ # ]
1026
+ # },
1027
+ # "CE58700": {
1028
+ # "cesmd": "CE58700",
1029
+ # "calid": "CE58700",
1030
+ # "name": "San Francisco - Golden Gate Bridge",
1031
+ # "predictors": [
1032
+ # {
1033
+ # "name": "SRIM_tran", "description": "Transverse configuration._suspension", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
1034
+ # "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [47,33,18,12], "outputs": [35,26,21]}, # Suspension bridge
1035
+ # },
1036
+ # # {
1037
+ # # "name": "S2", "description": "Transverse configuration._suspension_dense",
1038
+ # # "protocol": "",
1039
+ # # "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],
1040
+ # # "entry_point": [PYTHON, "-m", "mdof", "srim"],
1041
+ # # "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [47,33,18,12], "outputs": [42,35,26,21,14]}, # Suspension bridge
1042
+ # # },
1043
+ # # {
1044
+ # # "name": "S3", "description": "Transverse configuration._suspension_towers",
1045
+ # # "protocol": "",
1046
+ # # "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],
1047
+ # # "entry_point": [PYTHON, "-m", "mdof", "srim"],
1048
+ # # "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [47,33,18,12], "outputs": [39,23]}, # Suspension bridge
1049
+ # # },
1050
+ # # {
1051
+ # # "name": "S4", "description": "Transverse configuration at the north viaduct.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
1052
+ # # "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [12,3], "outputs": [97,96,76]}, # North Viaduct
1053
+ # # },
1054
+ # # {
1055
+ # # "name": "S5", "description": "Transverse configuration at the south_viaduct.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
1056
+ # # "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [59,47], "outputs": [61,55,54,51]}, # South Viaduct
1057
+ # # },
1058
+ # ]
1059
+ # },
1060
+ # "CE58601": {
1061
+ # "cesmd": "CE58601",
1062
+ # "calid": "34-0006 (04-SF-80-8.7)",
1063
+ # "name": "Oakland - SF Bay Bridge/East: Skyway",
1064
+ # "predictors": [
1065
+ # {
1066
+ # "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
1067
+ # "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [4,9,14,20], "outputs": [43,44,45,51]},
1068
+ # },
1069
+ # # {
1070
+ # # "name": "S2", "description": "Transverse with dense sensor configuration.",
1071
+ # # "protocol": "",
1072
+ # # "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],
1073
+ # # "entry_point": [PYTHON, "-m", "mdof", "srim"],
1074
+ # # "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [4,9,14,20], "outputs": [42,43,44,45,48,51,56,62,65]},
1075
+ # # }
1076
+ # ]
1077
+ # },
1078
+ # "CE58632": {
1079
+ # "cesmd": "CE58632",
1080
+ # "calid": "34-0003 (04-SF-80-5.6)",
1081
+ # "name": "San Francisco - Bay Bridge/West",
1082
+ # "predictors": [
1083
+ # {
1084
+ # "name": "SRIM_tran", "description": "Transverse configuration.", "protocol": "", "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],"entry_point": [PYTHON, "-m", "mdof", "srim"],
1085
+ # "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [1,7,16,33,50,55,70], "outputs": [5,10,20,22,28,40,47,52,61,58,65,68,73,77]},
1086
+ # },
1087
+ # # {
1088
+ # # "name": "S2", "description": "Transverse configuration at the towers.",
1089
+ # # "protocol": "",
1090
+ # # "metrics": ["SPECTRAL_SHIFT_IDENTIFICATION"],
1091
+ # # "entry_point": [PYTHON, "-m", "mdof", "srim"],
1092
+ # # "config": {"decimate": SS_DEC, "order": 12, "horizon": 190, "inputs": [1,7,16,33,50,55,70], "outputs": [25,44,63,75]},
1093
+ # # }
1094
+ # ]
1095
+ # },
1096
+ }
1097
+
1098
+