irie 0.0.11__py3-none-any.whl → 0.0.13__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.
- irie/apps/prediction/runners/opensees/schemas/hwd_analysis.schema.json +75 -0
- irie/apps/prediction/runners/opensees/schemas/hwd_analysis_default.json +14 -0
- irie/apps/prediction/runners/opensees/schemas/hwd_conf.schema.json +92 -0
- irie/apps/prediction/runners/opensees/schemas/hwd_conf_default.json +14 -0
- irie/apps/prediction/runners/opensees/schemas/hwd_results.schema.json +44 -0
- irie/apps/prediction/runners/opensees/schemas/hwd_results_default.json +9 -0
- irie/apps/templates/inventory/asset-profile.html +1 -1
- irie/core/urls.py +1 -1
- {irie-0.0.11.dist-info → irie-0.0.13.dist-info}/METADATA +1 -1
- {irie-0.0.11.dist-info → irie-0.0.13.dist-info}/RECORD +13 -7
- {irie-0.0.11.dist-info → irie-0.0.13.dist-info}/WHEEL +0 -0
- {irie-0.0.11.dist-info → irie-0.0.13.dist-info}/entry_points.txt +0 -0
- {irie-0.0.11.dist-info → irie-0.0.13.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
3
|
+
"title": "Analysis",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"properties": {
|
|
6
|
+
"dynamic_on": {
|
|
7
|
+
"type": "boolean",
|
|
8
|
+
"default": true,
|
|
9
|
+
"description": "turn the dynamic analysis on (true) or off (false)"
|
|
10
|
+
},
|
|
11
|
+
"dynamic_truncated": {
|
|
12
|
+
"type": "boolean",
|
|
13
|
+
"default": false,
|
|
14
|
+
"description": "truncate the dynamic analysis to the first t timesteps"
|
|
15
|
+
},
|
|
16
|
+
"dynamic_timesteps": {
|
|
17
|
+
"type": "integer",
|
|
18
|
+
"default": 500,
|
|
19
|
+
"description": "the t timesteps to which the the dynamic analysis is truncated"
|
|
20
|
+
},
|
|
21
|
+
"input_location": {
|
|
22
|
+
"type": "string",
|
|
23
|
+
"default": "401",
|
|
24
|
+
"description": "locations (node numbers) corresponding to ground motion input, separated by comma, no space. 0 for multiple support excitation."
|
|
25
|
+
},
|
|
26
|
+
"dynamic_integrator": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"default": "Newmark",
|
|
29
|
+
"description": "numerical integration method"
|
|
30
|
+
},
|
|
31
|
+
"damping_type": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"enum": ["rayleigh", "modal"],
|
|
34
|
+
"default": "rayleigh",
|
|
35
|
+
"description": "damping strategy"
|
|
36
|
+
},
|
|
37
|
+
"damping_modes": {
|
|
38
|
+
"type": "string",
|
|
39
|
+
"default": "1,2",
|
|
40
|
+
"description": "modes for which to specify damping ratios, separated by comma, no space"
|
|
41
|
+
},
|
|
42
|
+
"damping_ratios": {
|
|
43
|
+
"type": "string",
|
|
44
|
+
"default": "0.015,0.015",
|
|
45
|
+
"description": "damping ratios for selected modes, separated by comma, no space"
|
|
46
|
+
},
|
|
47
|
+
"rayleigh_zerolength_on":{
|
|
48
|
+
"type": "boolean",
|
|
49
|
+
"default": true,
|
|
50
|
+
"description": "turn rayleigh damping on for zerolength elements (abutment, hinge, and column pin springs)"
|
|
51
|
+
},
|
|
52
|
+
"dynamic_scale_factor": {
|
|
53
|
+
"type": "number",
|
|
54
|
+
"default": 1.0,
|
|
55
|
+
"description": "scale factor applied to input ground motion"
|
|
56
|
+
},
|
|
57
|
+
"record_zip": {
|
|
58
|
+
"type": "string",
|
|
59
|
+
"default": "Records/58658_003_20210628_18.29.26.P_SanLo.zip",
|
|
60
|
+
"description": "path to zip file containing the recorded motions for ground motion input and sensor comparison"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"required": [
|
|
64
|
+
"dynamic_on",
|
|
65
|
+
"dynamic_truncated",
|
|
66
|
+
"input_location",
|
|
67
|
+
"dynamic_integrator",
|
|
68
|
+
"damping_type",
|
|
69
|
+
"damping_modes",
|
|
70
|
+
"damping_ratios",
|
|
71
|
+
"rayleigh_zerolength_on",
|
|
72
|
+
"dynamic_scale_factor",
|
|
73
|
+
"record_zip"
|
|
74
|
+
]
|
|
75
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./hwd_analysis.schema.json",
|
|
3
|
+
"dynamic_on": true,
|
|
4
|
+
"dynamic_truncated": false,
|
|
5
|
+
"dynamic_timesteps": 500,
|
|
6
|
+
"input_location": "401",
|
|
7
|
+
"dynamic_integrator": "Newmark",
|
|
8
|
+
"damping_type": "rayleigh",
|
|
9
|
+
"damping_modes": "1,2",
|
|
10
|
+
"damping_ratios": "0.015,0.015",
|
|
11
|
+
"rayleigh_zerolength_on": true,
|
|
12
|
+
"dynamic_scale_factor": 1.0,
|
|
13
|
+
"record_zip": "Records/58658_003_20210628_18.29.26.P_SanLo.zip"
|
|
14
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"title": "Model",
|
|
5
|
+
"properties": {
|
|
6
|
+
"transformation": {
|
|
7
|
+
"type": "string",
|
|
8
|
+
"enum": ["Linear", "PDelta"],
|
|
9
|
+
"default": "Linear",
|
|
10
|
+
"description": "geometric transformation linearity for element deformations"
|
|
11
|
+
},
|
|
12
|
+
"column_linearity": {
|
|
13
|
+
"title": "Column Model",
|
|
14
|
+
"type": "string",
|
|
15
|
+
"enum": ["elastic", "nonlinear"],
|
|
16
|
+
"default": "elastic",
|
|
17
|
+
"description": "column element material linearity"
|
|
18
|
+
},
|
|
19
|
+
"column_pins": {
|
|
20
|
+
"title": "Column Pins",
|
|
21
|
+
"type": "string",
|
|
22
|
+
"enum": ["1", "2", "3", "4", "5"],
|
|
23
|
+
"default": "3",
|
|
24
|
+
"options": {
|
|
25
|
+
"enum_titles": [
|
|
26
|
+
"All rigid",
|
|
27
|
+
"All pinned",
|
|
28
|
+
"Mixed rigid/pinned",
|
|
29
|
+
"All zerolength fiber sections",
|
|
30
|
+
"All integration point fiber sections"
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
"description": "column pin model"
|
|
34
|
+
},
|
|
35
|
+
"column_capbeam_joint":{
|
|
36
|
+
"type": "string",
|
|
37
|
+
"enum": ["none", "rigidlink", "jointoffset"],
|
|
38
|
+
"default": "none",
|
|
39
|
+
"description": "offsets between tops of columns and column-cap beam joints"
|
|
40
|
+
},
|
|
41
|
+
"abutment_model": {
|
|
42
|
+
"type": "string",
|
|
43
|
+
"enum": ["none", "linear", "simplified", "complex"],
|
|
44
|
+
"default": "linear",
|
|
45
|
+
"description": "abutment model"
|
|
46
|
+
},
|
|
47
|
+
"hinge_model": {
|
|
48
|
+
"type": "string",
|
|
49
|
+
"enum": ["none", "linear", "simplified", "complex"],
|
|
50
|
+
"default": "linear",
|
|
51
|
+
"description": "in-span hinge model"
|
|
52
|
+
},
|
|
53
|
+
"Ec": {
|
|
54
|
+
"type": "number",
|
|
55
|
+
"default": 3530.5,
|
|
56
|
+
"description": "concrete modulus of elasticity (ksi)"
|
|
57
|
+
},
|
|
58
|
+
"Ecol": {
|
|
59
|
+
"type": "number",
|
|
60
|
+
"default": 3530.5,
|
|
61
|
+
"description": "column concrete modulus of elasticity (ksi)"
|
|
62
|
+
},
|
|
63
|
+
"Es": {
|
|
64
|
+
"type": "number",
|
|
65
|
+
"default": 29000.0,
|
|
66
|
+
"description": "steel tensile modulus of elasticity (initial elastic tangent, ksi)"
|
|
67
|
+
},
|
|
68
|
+
"CGa": {
|
|
69
|
+
"type": "number",
|
|
70
|
+
"default": 50.0,
|
|
71
|
+
"description": "abutment shear stiffness coefficient"
|
|
72
|
+
},
|
|
73
|
+
"CGh": {
|
|
74
|
+
"type": "number",
|
|
75
|
+
"default": 60.0,
|
|
76
|
+
"description": "in-span hinge shear stiffness coefficient"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"required": [
|
|
80
|
+
"transformation",
|
|
81
|
+
"column_linearity",
|
|
82
|
+
"column_pins",
|
|
83
|
+
"column_capbeam_joint",
|
|
84
|
+
"abutment_model",
|
|
85
|
+
"hinge_model",
|
|
86
|
+
"Ec",
|
|
87
|
+
"Ecol",
|
|
88
|
+
"Es",
|
|
89
|
+
"CGa",
|
|
90
|
+
"CGh"
|
|
91
|
+
]
|
|
92
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./hwd_conf.schema.json",
|
|
3
|
+
"transformation": "Linear",
|
|
4
|
+
"column_linearity": "elastic",
|
|
5
|
+
"column_pins": "3",
|
|
6
|
+
"column_capbeam_joint": "none",
|
|
7
|
+
"abutment_model": "linear",
|
|
8
|
+
"hinge_model": "linear",
|
|
9
|
+
"Ec": 3530.5,
|
|
10
|
+
"Ecol": 3530.5,
|
|
11
|
+
"Es": 29000.0,
|
|
12
|
+
"CGa": 50.0,
|
|
13
|
+
"CGh": 60.0
|
|
14
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"model_name": {
|
|
6
|
+
"type": "string",
|
|
7
|
+
"default": "hwd_model",
|
|
8
|
+
"description": "specify the model name"
|
|
9
|
+
},
|
|
10
|
+
"modeling_matrix": {
|
|
11
|
+
"type": "boolean",
|
|
12
|
+
"default": true,
|
|
13
|
+
"description": "report the modeling configuration and analysis settings info and compare to other models"
|
|
14
|
+
},
|
|
15
|
+
"runtime": {
|
|
16
|
+
"type": "boolean",
|
|
17
|
+
"default": true,
|
|
18
|
+
"description": "report the runtime of the model with breakdown of model definition and analysis"
|
|
19
|
+
},
|
|
20
|
+
"eigen_modal_tracking": {
|
|
21
|
+
"type": "boolean",
|
|
22
|
+
"default": true,
|
|
23
|
+
"description": "report period and mode shape information for fundamental modes of vibration calculated by eigen analysis; \ncompare to the assumed baseline"
|
|
24
|
+
},
|
|
25
|
+
"ssid_modal_tracking": {
|
|
26
|
+
"type": "boolean",
|
|
27
|
+
"default": false,
|
|
28
|
+
"description": "report period and mode shape information for fundamental modes of vibration calculated by system identification methods; \ncompare to the assumed baseline"
|
|
29
|
+
},
|
|
30
|
+
"compare_response_history": {
|
|
31
|
+
"type": "boolean",
|
|
32
|
+
"default": true,
|
|
33
|
+
"description": "plot and report difference metrics between simulated and recorded responses"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"required": [
|
|
37
|
+
"model_name",
|
|
38
|
+
"modeling_matrix",
|
|
39
|
+
"runtime",
|
|
40
|
+
"eigen_modal_tracking",
|
|
41
|
+
"ssid_modal_tracking",
|
|
42
|
+
"compare_response_history"
|
|
43
|
+
]
|
|
44
|
+
}
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
<li class="breadcrumb-item active"><code>{{ asset.calid }}</code></li>
|
|
118
118
|
</ol>
|
|
119
119
|
</nav>
|
|
120
|
-
<h2 class="h4">{{ asset.name }}</h2>
|
|
120
|
+
<h2 class="h4">{{ asset.id }} - {{ asset.name }}</h2>
|
|
121
121
|
</div>
|
|
122
122
|
<div class="btn-toolbar mb-2 mb-md-0">
|
|
123
123
|
<a role="button"
|
irie/core/urls.py
CHANGED
|
@@ -92,6 +92,12 @@ irie/apps/prediction/runners/opensees/utilities.py,sha256=7fUVgk6y-GzHdmFDyXcQYT
|
|
|
92
92
|
irie/apps/prediction/runners/opensees/xmlutils.py,sha256=Q3i5L0Dp_5nRsKRGMr-m_bS03Mxa36Ujb-RvwAmResc,7510
|
|
93
93
|
irie/apps/prediction/runners/opensees/zipped.py,sha256=ou2BnxY4WzAzVp3cL9XJUeSJqdijRs-rbcagOsX_Ed0,942
|
|
94
94
|
irie/apps/prediction/runners/opensees/schemas/__init__.py,sha256=AMX2Z5F_ltcB6ny1U41aDXIbAmS7wprjcA35j511XBU,1033
|
|
95
|
+
irie/apps/prediction/runners/opensees/schemas/hwd_analysis.schema.json,sha256=kd0eElyZKaMivprGESGLnOSE74oZlH2NuL3ih68m7pg,2314
|
|
96
|
+
irie/apps/prediction/runners/opensees/schemas/hwd_analysis_default.json,sha256=SUUQUHdfZsPDy407aRysvtsFuI79WJe6016u_MilAJc,434
|
|
97
|
+
irie/apps/prediction/runners/opensees/schemas/hwd_conf.schema.json,sha256=xZCT6ek4pAgpyLrBEOCMdP30fKJpIVbzCIqMy_AxuKM,2437
|
|
98
|
+
irie/apps/prediction/runners/opensees/schemas/hwd_conf_default.json,sha256=t471CHtjukoABBJGt1s9R93ikvx48XbFio-7wR_G7Qk,322
|
|
99
|
+
irie/apps/prediction/runners/opensees/schemas/hwd_results.schema.json,sha256=izj75gw_DXv0nU6xTNQtefRWi0fUMrcOKFQmxJg1-_c,1474
|
|
100
|
+
irie/apps/prediction/runners/opensees/schemas/hwd_results_default.json,sha256=f8SqyEhomuMEp4_swTbg6mt7t_0nWlJVVW_s67C-bIk,233
|
|
95
101
|
irie/apps/prediction/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
102
|
irie/apps/prediction/templatetags/predictor.py,sha256=43MXAC-Y-ex_w9_cdvl4UbkrdlZWN_PUg0NVM8C0rHY,793
|
|
97
103
|
irie/apps/site/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -296,7 +302,7 @@ irie/apps/templates/includes/scripts.html,sha256=3O-gBodubd9leK7ncujL40gl2Upf9wl
|
|
|
296
302
|
irie/apps/templates/includes/settings-box.html,sha256=wexsLS4SMRyKci-r4L_LQ6QM27h4U291091NcGiTT3o,2486
|
|
297
303
|
irie/apps/templates/includes/sidebar.html,sha256=kVrReAUqKm3rRvfyCYOV4JsWfUslarMvdUr0jogKxJA,10975
|
|
298
304
|
irie/apps/templates/inventory/asset-event-summary.html,sha256=WhANtDgvg_2myyVyhuCXIh-liHQF9tjzVQKMLgzWndE,50711
|
|
299
|
-
irie/apps/templates/inventory/asset-profile.html,sha256=
|
|
305
|
+
irie/apps/templates/inventory/asset-profile.html,sha256=I7ycPMXMBQIhC0Lf4H76P6LNQ0inXSOQZRrdNjB7CAY,11240
|
|
300
306
|
irie/apps/templates/inventory/asset-table.html,sha256=TP6V-IkPHzqsBBWBt8o3-GoCvk1CJUqJCjw5BYMzC0A,10483
|
|
301
307
|
irie/apps/templates/inventory/bridge-dashboard.html,sha256=67zrDlih3LOi9xFVwPVZZkgRT3DO-lE_qRL7q8Uz9GY,45472
|
|
302
308
|
irie/apps/templates/inventory/bridge.html,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
@@ -339,7 +345,7 @@ irie/apps/templates/site/unused-dashboard-cards.html,sha256=DDNWrnIf4o0wj06WYH8Y
|
|
|
339
345
|
irie/core/__init__.py,sha256=wkkNngGxgYcCM745-rlvP6ynrI0b0QN3aWmLWDsR8zU,230
|
|
340
346
|
irie/core/asgi.py,sha256=3lVQKFRA4bznM2mWu5Cv24a5H9pfb6YU07q-I_TN0DM,395
|
|
341
347
|
irie/core/settings.py,sha256=9jqn02olEya6O2p3pABLFhmHRwl_U05sOAtluo6y1Rg,6342
|
|
342
|
-
irie/core/urls.py,sha256=
|
|
348
|
+
irie/core/urls.py,sha256=H_oIilxAeV6C5W3TY_-oYwkbHiOnHdrRGweBDnOe04k,1279
|
|
343
349
|
irie/core/wsgi.py,sha256=8dxK789vOoRWm0IatEhNqMgZhov9TlspjM6hOUbjg24,395
|
|
344
350
|
irie/init/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
351
|
irie/init/__main__.py,sha256=ngBeyh1rRXYZYIeW5VKvHl8QggIV90A49QXbZbvePLI,556
|
|
@@ -359,8 +365,8 @@ irie/init/management/commands/init_corridors.py,sha256=EzLk0HUiFxlco-2u0rypewOc9
|
|
|
359
365
|
irie/init/management/commands/init_predictors.py,sha256=jdD7rd8l2qxuUuR5GOYuHXp-ZQkAK477TefksBMdlOw,2362
|
|
360
366
|
irie/post/__main__.py,sha256=ACDm47LwhNoqMhuGnbYXDV-_lflnD8f1qOCdv2VTulU,2284
|
|
361
367
|
irie/usgs/__main__.py,sha256=HiSvPn5IW5IqRiCk1qRRq5dCy3-7iISw7v1P_w2rLrk,5049
|
|
362
|
-
irie-0.0.
|
|
363
|
-
irie-0.0.
|
|
364
|
-
irie-0.0.
|
|
365
|
-
irie-0.0.
|
|
366
|
-
irie-0.0.
|
|
368
|
+
irie-0.0.13.dist-info/METADATA,sha256=Ac6ywaLIP0i-U78PokSo2ajt7jEi_4HxulaKrTFh6t8,2507
|
|
369
|
+
irie-0.0.13.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
370
|
+
irie-0.0.13.dist-info/entry_points.txt,sha256=A_3h9wPBGfxGQ78_MGa-nO6Z0foxOYeAnIE47jxEztg,44
|
|
371
|
+
irie-0.0.13.dist-info/top_level.txt,sha256=zVCxi5E2nkISZPzKq8VEhWe_dGuPcefLYV1tYqQdwlY,5
|
|
372
|
+
irie-0.0.13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|