FourCIPP 1.30.0__py3-none-any.whl → 1.31.0__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.
- fourcipp/config/4C_metadata.yaml +41 -1
- fourcipp/config/4C_schema.json +66 -2
- fourcipp/version.py +2 -2
- {fourcipp-1.30.0.dist-info → fourcipp-1.31.0.dist-info}/METADATA +1 -1
- {fourcipp-1.30.0.dist-info → fourcipp-1.31.0.dist-info}/RECORD +9 -9
- {fourcipp-1.30.0.dist-info → fourcipp-1.31.0.dist-info}/WHEEL +0 -0
- {fourcipp-1.30.0.dist-info → fourcipp-1.31.0.dist-info}/entry_points.txt +0 -0
- {fourcipp-1.30.0.dist-info → fourcipp-1.31.0.dist-info}/licenses/LICENSE +0 -0
- {fourcipp-1.30.0.dist-info → fourcipp-1.31.0.dist-info}/top_level.txt +0 -0
fourcipp/config/4C_metadata.yaml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
metadata:
|
|
2
|
-
commit_hash:
|
|
2
|
+
commit_hash: e9cbd1b8923fa74b6bd9233af7947fc7d79be199
|
|
3
3
|
version: 2025.4.0-dev
|
|
4
4
|
description_section_name: TITLE
|
|
5
5
|
legacy_element_specs:
|
|
@@ -41122,6 +41122,46 @@ sections:
|
|
|
41122
41122
|
- name: COUPLING_ID
|
|
41123
41123
|
type: int
|
|
41124
41124
|
required: true
|
|
41125
|
+
- name: BEAM INTERACTION/BEAM TO BEAM POINT COUPLING CONDITIONS
|
|
41126
|
+
type: list
|
|
41127
|
+
description: Coupling conditions between beams based on closest point projections.
|
|
41128
|
+
required: false
|
|
41129
|
+
spec:
|
|
41130
|
+
type: all_of
|
|
41131
|
+
specs:
|
|
41132
|
+
- name: E
|
|
41133
|
+
type: int
|
|
41134
|
+
description: "ID of the condition. This ID refers to the respective topological entity of the condition."
|
|
41135
|
+
required: true
|
|
41136
|
+
- name: ENTITY_TYPE
|
|
41137
|
+
type: enum
|
|
41138
|
+
description: "The type of entity that E refers to."
|
|
41139
|
+
required: false
|
|
41140
|
+
default: legacy_id
|
|
41141
|
+
choices:
|
|
41142
|
+
- name: legacy_id
|
|
41143
|
+
- name: node_set_id
|
|
41144
|
+
- name: element_block_id
|
|
41145
|
+
- name: COUPLING_ID
|
|
41146
|
+
type: int
|
|
41147
|
+
required: true
|
|
41148
|
+
- name: PARAMETERS
|
|
41149
|
+
type: group
|
|
41150
|
+
required: false
|
|
41151
|
+
specs:
|
|
41152
|
+
- type: all_of
|
|
41153
|
+
specs:
|
|
41154
|
+
- name: POSITIONAL_PENALTY_PARAMETER
|
|
41155
|
+
type: double
|
|
41156
|
+
required: true
|
|
41157
|
+
- name: ROTATIONAL_PENALTY_PARAMETER
|
|
41158
|
+
type: double
|
|
41159
|
+
required: true
|
|
41160
|
+
- name: PROJECTION_VALID_FACTOR
|
|
41161
|
+
type: double
|
|
41162
|
+
description: "Factor multiplied with sum of cross section radii to define valid projection distance"
|
|
41163
|
+
required: false
|
|
41164
|
+
default: 2
|
|
41125
41165
|
- name: BEAM INTERACTION/BEAM TO SOLID EDGE CONTACT
|
|
41126
41166
|
type: group
|
|
41127
41167
|
description: Parameters for beam-to-solid edge contact.
|
fourcipp/config/4C_schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"description": "Schema for 4C\nCommit hash:
|
|
2
|
+
"description": "Schema for 4C\nCommit hash: e9cbd1b8923fa74b6bd9233af7947fc7d79be199\nVersion: 2025.4.0-dev",
|
|
3
3
|
"type": "object",
|
|
4
4
|
"properties": {
|
|
5
5
|
"ALE DOMAIN": {
|
|
@@ -69149,6 +69149,70 @@
|
|
|
69149
69149
|
]
|
|
69150
69150
|
}
|
|
69151
69151
|
},
|
|
69152
|
+
"BEAM INTERACTION/BEAM TO BEAM POINT COUPLING CONDITIONS": {
|
|
69153
|
+
"title": "BEAM INTERACTION/BEAM TO BEAM POINT COUPLING CONDITIONS (list)",
|
|
69154
|
+
"description": "Coupling conditions between beams based on closest point projections.",
|
|
69155
|
+
"type": "array",
|
|
69156
|
+
"items": {
|
|
69157
|
+
"type": "object",
|
|
69158
|
+
"properties": {
|
|
69159
|
+
"E": {
|
|
69160
|
+
"title": "E (int)",
|
|
69161
|
+
"description": "ID of the condition. This ID refers to the respective topological entity of the condition.",
|
|
69162
|
+
"type": "integer"
|
|
69163
|
+
},
|
|
69164
|
+
"ENTITY_TYPE": {
|
|
69165
|
+
"title": "ENTITY_TYPE (enum)",
|
|
69166
|
+
"description": "The type of entity that E refers to.",
|
|
69167
|
+
"default": "legacy_id",
|
|
69168
|
+
"type": "string",
|
|
69169
|
+
"enum": [
|
|
69170
|
+
"legacy_id",
|
|
69171
|
+
"node_set_id",
|
|
69172
|
+
"element_block_id"
|
|
69173
|
+
]
|
|
69174
|
+
},
|
|
69175
|
+
"COUPLING_ID": {
|
|
69176
|
+
"title": "COUPLING_ID (int)",
|
|
69177
|
+
"description": "No description yet.",
|
|
69178
|
+
"type": "integer"
|
|
69179
|
+
},
|
|
69180
|
+
"PARAMETERS": {
|
|
69181
|
+
"title": "PARAMETERS (group)",
|
|
69182
|
+
"description": "No description yet.",
|
|
69183
|
+
"type": "object",
|
|
69184
|
+
"properties": {
|
|
69185
|
+
"POSITIONAL_PENALTY_PARAMETER": {
|
|
69186
|
+
"title": "POSITIONAL_PENALTY_PARAMETER (double)",
|
|
69187
|
+
"description": "No description yet.",
|
|
69188
|
+
"type": "number"
|
|
69189
|
+
},
|
|
69190
|
+
"ROTATIONAL_PENALTY_PARAMETER": {
|
|
69191
|
+
"title": "ROTATIONAL_PENALTY_PARAMETER (double)",
|
|
69192
|
+
"description": "No description yet.",
|
|
69193
|
+
"type": "number"
|
|
69194
|
+
},
|
|
69195
|
+
"PROJECTION_VALID_FACTOR": {
|
|
69196
|
+
"title": "PROJECTION_VALID_FACTOR (double)",
|
|
69197
|
+
"description": "Factor multiplied with sum of cross section radii to define valid projection distance",
|
|
69198
|
+
"default": 2,
|
|
69199
|
+
"type": "number"
|
|
69200
|
+
}
|
|
69201
|
+
},
|
|
69202
|
+
"additionalProperties": false,
|
|
69203
|
+
"required": [
|
|
69204
|
+
"POSITIONAL_PENALTY_PARAMETER",
|
|
69205
|
+
"ROTATIONAL_PENALTY_PARAMETER"
|
|
69206
|
+
]
|
|
69207
|
+
}
|
|
69208
|
+
},
|
|
69209
|
+
"additionalProperties": false,
|
|
69210
|
+
"required": [
|
|
69211
|
+
"E",
|
|
69212
|
+
"COUPLING_ID"
|
|
69213
|
+
]
|
|
69214
|
+
}
|
|
69215
|
+
},
|
|
69152
69216
|
"BEAM INTERACTION/BEAM TO SOLID EDGE CONTACT": {
|
|
69153
69217
|
"title": "BEAM INTERACTION/BEAM TO SOLID EDGE CONTACT (group)",
|
|
69154
69218
|
"description": "Parameters for beam-to-solid edge contact.",
|
|
@@ -401750,5 +401814,5 @@
|
|
|
401750
401814
|
"PROBLEM TYPE"
|
|
401751
401815
|
],
|
|
401752
401816
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
401753
|
-
"$id": "
|
|
401817
|
+
"$id": "e9cbd1b8923fa74b6bd9233af7947fc7d79be199"
|
|
401754
401818
|
}
|
fourcipp/version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '1.
|
|
32
|
-
__version_tuple__ = version_tuple = (1,
|
|
31
|
+
__version__ = version = '1.31.0'
|
|
32
|
+
__version_tuple__ = version_tuple = (1, 31, 0)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
fourcipp/__init__.py,sha256=4pz7DVXErSbUcLqPTaHnQfdJzKkpfZDivBqbHbTgpRE,1388
|
|
2
2
|
fourcipp/fourc_input.py,sha256=U_1b3XtZpXZfRV3ZAWiZzpAKtLWWrdBXow2r3wNPWao,24720
|
|
3
|
-
fourcipp/version.py,sha256=
|
|
4
|
-
fourcipp/config/4C_metadata.yaml,sha256=
|
|
5
|
-
fourcipp/config/4C_schema.json,sha256=
|
|
3
|
+
fourcipp/version.py,sha256=MkLunoDN6cSKBo-5WyDIUQeMsbu7I4hMqQk3qsFTh2w,706
|
|
4
|
+
fourcipp/config/4C_metadata.yaml,sha256=h8EU8vhpH-pVjuWun1Khl4VKvEAP2QOGab65RAtZlX0,11962528
|
|
5
|
+
fourcipp/config/4C_schema.json,sha256=EK8NY1lF0aYx2Ta19rMaN79hL6k75_99rtdWYGMJwbk,16533551
|
|
6
6
|
fourcipp/config/config.yaml,sha256=n2c2a6E4HKfAdNWOQz1kLUuf5p4NLxIddaAi2t5eM38,460
|
|
7
7
|
fourcipp/legacy_io/__init__.py,sha256=L3MWW-WjPbPAJVX8Z0Uheftn0dRPnqNnSBic3uloFhI,5750
|
|
8
8
|
fourcipp/legacy_io/element.py,sha256=rP8F-m-8ZCwCxtV_OASvvLeNYr01zsmgZsDZSJ_G1gY,3977
|
|
@@ -20,9 +20,9 @@ fourcipp/utils/not_set.py,sha256=NHf0UXDmTuZfvfnIIgkkx4EohxRsN4MVUHUpt7VOnaQ,243
|
|
|
20
20
|
fourcipp/utils/type_hinting.py,sha256=izPEhbMdmhrIBamCLqqF_6iDZW-w7a8kplUugbQILyw,1714
|
|
21
21
|
fourcipp/utils/validation.py,sha256=FejHOj1MddaU7gEpMN-f8Mz3rYjflakd1qcsKnctHqA,5292
|
|
22
22
|
fourcipp/utils/yaml_io.py,sha256=jPgVnxE858XTpDC6BVhfbbljQegL58zc3u2VPYCTvGE,5771
|
|
23
|
-
fourcipp-1.
|
|
24
|
-
fourcipp-1.
|
|
25
|
-
fourcipp-1.
|
|
26
|
-
fourcipp-1.
|
|
27
|
-
fourcipp-1.
|
|
28
|
-
fourcipp-1.
|
|
23
|
+
fourcipp-1.31.0.dist-info/licenses/LICENSE,sha256=lkSOHdH9IZ8c3Vnz0fFjqls1cRlmLADBP8QEIwUlH3o,1082
|
|
24
|
+
fourcipp-1.31.0.dist-info/METADATA,sha256=BRuLEcR2QTZcjUv3qPb4ayEZHtdoITUhC9OilKnxgXY,7960
|
|
25
|
+
fourcipp-1.31.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
26
|
+
fourcipp-1.31.0.dist-info/entry_points.txt,sha256=44XBG4bwhuq1EwOZ0U055HYP8_qN6_d30ecVsa5Igng,53
|
|
27
|
+
fourcipp-1.31.0.dist-info/top_level.txt,sha256=oZ6jgFFmvi157VwGUEFuKT3D8oS5mOkpOVx8zZURZrQ,9
|
|
28
|
+
fourcipp-1.31.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|