FourCIPP 1.40.0__tar.gz → 1.42.0__tar.gz
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-1.40.0/src/FourCIPP.egg-info → fourcipp-1.42.0}/PKG-INFO +1 -1
- {fourcipp-1.40.0 → fourcipp-1.42.0/src/FourCIPP.egg-info}/PKG-INFO +1 -1
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/config/4C_metadata.yaml +50 -66
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/config/4C_schema.json +72 -92
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/version.py +3 -3
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/test_fourc_input.py +5 -5
- {fourcipp-1.40.0 → fourcipp-1.42.0}/.coveragerc +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/.github/workflows/check_code.yaml +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/.github/workflows/publish_pypi.yaml +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/.github/workflows/run_testsuite.yaml +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/.github/workflows/tag_version.yaml +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/.github/workflows/update_4C_metadata_schema_file.yaml +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/.gitignore +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/.pre-commit-config.yaml +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/LICENSE +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/README.md +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/docs/assets/fourcipp_logo_black.svg +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/docs/assets/fourcipp_logo_white.svg +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/pyproject.toml +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/requirements.in +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/requirements.txt +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/setup.cfg +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/FourCIPP.egg-info/SOURCES.txt +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/FourCIPP.egg-info/dependency_links.txt +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/FourCIPP.egg-info/entry_points.txt +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/FourCIPP.egg-info/requires.txt +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/FourCIPP.egg-info/top_level.txt +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/__init__.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/config/config.yaml +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/fourc_input.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/legacy_io/__init__.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/legacy_io/element.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/legacy_io/inline_dat.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/legacy_io/node.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/legacy_io/node_topology.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/legacy_io/particle.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/utils/__init__.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/utils/cli.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/utils/configuration.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/utils/converter.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/utils/dict_utils.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/utils/metadata.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/utils/not_set.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/utils/type_hinting.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/utils/validation.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/src/fourcipp/utils/yaml_io.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/__init__.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/conftest.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/__init__.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/legacy_io/__init__.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/legacy_io/test_element.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/legacy_io/test_inline_dat.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/legacy_io/test_legacy_io.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/legacy_io/test_node.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/legacy_io/test_node_topology.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/legacy_io/test_particle.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/legacy_io/utils.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/test_readme_quickstart_example.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/utils/__init__.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/utils/test_configuration.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/utils/test_converter.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/utils/test_dict_utils.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/utils/test_metadata.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/utils/test_not_set.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/utils/test_validation.py +0 -0
- {fourcipp-1.40.0 → fourcipp-1.42.0}/tests/fourcipp/utils/test_yaml_io.py +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
metadata:
|
|
2
|
-
commit_hash:
|
|
2
|
+
commit_hash: 06d4d904c17421c86b75ff8b31abf86ea88d6f45
|
|
3
3
|
version: 2025.4.0-dev
|
|
4
4
|
description_section_name: TITLE
|
|
5
5
|
legacy_element_specs:
|
|
@@ -7250,7 +7250,31 @@ sections:
|
|
|
7250
7250
|
- type: all_of
|
|
7251
7251
|
specs:
|
|
7252
7252
|
- $ref: "2"
|
|
7253
|
-
- name: BEAM
|
|
7253
|
+
- name: BEAM INTERACTION
|
|
7254
|
+
type: group
|
|
7255
|
+
required: false
|
|
7256
|
+
specs:
|
|
7257
|
+
- type: all_of
|
|
7258
|
+
specs:
|
|
7259
|
+
- name: REPARTITIONSTRATEGY
|
|
7260
|
+
type: enum
|
|
7261
|
+
description: "Type of employed repartitioning strategy"
|
|
7262
|
+
required: false
|
|
7263
|
+
default: "Adaptive"
|
|
7264
|
+
choices:
|
|
7265
|
+
- name: "Adaptive"
|
|
7266
|
+
- name: "Everydt"
|
|
7267
|
+
- name: "adaptive"
|
|
7268
|
+
- name: "everydt"
|
|
7269
|
+
- name: SEARCH_STRATEGY
|
|
7270
|
+
type: enum
|
|
7271
|
+
description: "Type of search strategy used for finding coupling pairs"
|
|
7272
|
+
required: false
|
|
7273
|
+
default: bruteforce_with_binning
|
|
7274
|
+
choices:
|
|
7275
|
+
- name: bruteforce_with_binning
|
|
7276
|
+
- name: bounding_volume_hierarchy
|
|
7277
|
+
- name: BEAM INTERACTION/BEAM TO BEAM CONTACT
|
|
7254
7278
|
type: group
|
|
7255
7279
|
required: false
|
|
7256
7280
|
specs:
|
|
@@ -7349,7 +7373,30 @@ sections:
|
|
|
7349
7373
|
description: "For gaps > -BEAMS_BASICSTIFFGAP, only the basic part of the contact linearization is applied!"
|
|
7350
7374
|
required: false
|
|
7351
7375
|
default: -1
|
|
7352
|
-
- name: BEAM
|
|
7376
|
+
- name: BEAM INTERACTION/BEAM TO BEAM CONTACT CONDITIONS
|
|
7377
|
+
type: list
|
|
7378
|
+
description: Beam-to-beam contact conditions
|
|
7379
|
+
required: false
|
|
7380
|
+
spec:
|
|
7381
|
+
type: all_of
|
|
7382
|
+
specs:
|
|
7383
|
+
- name: E
|
|
7384
|
+
type: int
|
|
7385
|
+
description: "ID of the condition. This ID refers to the respective topological entity of the condition."
|
|
7386
|
+
required: true
|
|
7387
|
+
- name: ENTITY_TYPE
|
|
7388
|
+
type: enum
|
|
7389
|
+
description: "The type of entity that E refers to."
|
|
7390
|
+
required: false
|
|
7391
|
+
default: legacy_id
|
|
7392
|
+
choices:
|
|
7393
|
+
- name: legacy_id
|
|
7394
|
+
- name: node_set_id
|
|
7395
|
+
- name: element_block_id
|
|
7396
|
+
- name: COUPLING_ID
|
|
7397
|
+
type: int
|
|
7398
|
+
required: true
|
|
7399
|
+
- name: BEAM INTERACTION/BEAM TO BEAM CONTACT/RUNTIME VTK OUTPUT
|
|
7353
7400
|
type: group
|
|
7354
7401
|
required: false
|
|
7355
7402
|
specs:
|
|
@@ -7390,69 +7437,6 @@ sections:
|
|
|
7390
7437
|
description: "write visualization output to indicate which different penalty values are active.Explanation: 0 corresponds to btb point contact;1 corresponds to active btb line contact;2 indicates active end point contact "
|
|
7391
7438
|
required: false
|
|
7392
7439
|
default: false
|
|
7393
|
-
- name: BEAM INTERACTION
|
|
7394
|
-
type: group
|
|
7395
|
-
required: false
|
|
7396
|
-
specs:
|
|
7397
|
-
- type: all_of
|
|
7398
|
-
specs:
|
|
7399
|
-
- name: REPARTITIONSTRATEGY
|
|
7400
|
-
type: enum
|
|
7401
|
-
description: "Type of employed repartitioning strategy"
|
|
7402
|
-
required: false
|
|
7403
|
-
default: "Adaptive"
|
|
7404
|
-
choices:
|
|
7405
|
-
- name: "Adaptive"
|
|
7406
|
-
- name: "Everydt"
|
|
7407
|
-
- name: "adaptive"
|
|
7408
|
-
- name: "everydt"
|
|
7409
|
-
- name: SEARCH_STRATEGY
|
|
7410
|
-
type: enum
|
|
7411
|
-
description: "Type of search strategy used for finding coupling pairs"
|
|
7412
|
-
required: false
|
|
7413
|
-
default: bruteforce_with_binning
|
|
7414
|
-
choices:
|
|
7415
|
-
- name: bruteforce_with_binning
|
|
7416
|
-
- name: bounding_volume_hierarchy
|
|
7417
|
-
- name: BEAM INTERACTION/BEAM TO BEAM CONTACT
|
|
7418
|
-
type: group
|
|
7419
|
-
required: false
|
|
7420
|
-
specs:
|
|
7421
|
-
- type: all_of
|
|
7422
|
-
specs:
|
|
7423
|
-
- name: STRATEGY
|
|
7424
|
-
type: enum
|
|
7425
|
-
description: "Type of employed solving strategy"
|
|
7426
|
-
required: false
|
|
7427
|
-
default: "None"
|
|
7428
|
-
choices:
|
|
7429
|
-
- name: "None"
|
|
7430
|
-
- name: "Penalty"
|
|
7431
|
-
- name: "none"
|
|
7432
|
-
- name: "penalty"
|
|
7433
|
-
- name: BEAM INTERACTION/BEAM TO BEAM CONTACT CONDITIONS
|
|
7434
|
-
type: list
|
|
7435
|
-
description: Beam-to-beam contact conditions
|
|
7436
|
-
required: false
|
|
7437
|
-
spec:
|
|
7438
|
-
type: all_of
|
|
7439
|
-
specs:
|
|
7440
|
-
- name: E
|
|
7441
|
-
type: int
|
|
7442
|
-
description: "ID of the condition. This ID refers to the respective topological entity of the condition."
|
|
7443
|
-
required: true
|
|
7444
|
-
- name: ENTITY_TYPE
|
|
7445
|
-
type: enum
|
|
7446
|
-
description: "The type of entity that E refers to."
|
|
7447
|
-
required: false
|
|
7448
|
-
default: legacy_id
|
|
7449
|
-
choices:
|
|
7450
|
-
- name: legacy_id
|
|
7451
|
-
- name: node_set_id
|
|
7452
|
-
- name: element_block_id
|
|
7453
|
-
- name: COUPLING_ID
|
|
7454
|
-
type: int
|
|
7455
|
-
required: true
|
|
7456
7440
|
- name: BEAM INTERACTION/BEAM TO BEAM POINT COUPLING CONDITIONS
|
|
7457
7441
|
type: list
|
|
7458
7442
|
description: Coupling conditions between beams based on closest point projections.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"description": "Schema for 4C\nCommit hash:
|
|
2
|
+
"description": "Schema for 4C\nCommit hash: 06d4d904c17421c86b75ff8b31abf86ea88d6f45\nVersion: 2025.4.0-dev",
|
|
3
3
|
"type": "object",
|
|
4
4
|
"properties": {
|
|
5
5
|
"ALE DOMAIN": {
|
|
@@ -68761,8 +68761,38 @@
|
|
|
68761
68761
|
"PATCHES"
|
|
68762
68762
|
]
|
|
68763
68763
|
},
|
|
68764
|
-
"BEAM
|
|
68765
|
-
"title": "BEAM
|
|
68764
|
+
"BEAM INTERACTION": {
|
|
68765
|
+
"title": "BEAM INTERACTION (group)",
|
|
68766
|
+
"description": "No description yet.",
|
|
68767
|
+
"type": "object",
|
|
68768
|
+
"properties": {
|
|
68769
|
+
"REPARTITIONSTRATEGY": {
|
|
68770
|
+
"title": "REPARTITIONSTRATEGY (enum)",
|
|
68771
|
+
"description": "Type of employed repartitioning strategy",
|
|
68772
|
+
"default": "Adaptive",
|
|
68773
|
+
"type": "string",
|
|
68774
|
+
"enum": [
|
|
68775
|
+
"Adaptive",
|
|
68776
|
+
"Everydt",
|
|
68777
|
+
"adaptive",
|
|
68778
|
+
"everydt"
|
|
68779
|
+
]
|
|
68780
|
+
},
|
|
68781
|
+
"SEARCH_STRATEGY": {
|
|
68782
|
+
"title": "SEARCH_STRATEGY (enum)",
|
|
68783
|
+
"description": "Type of search strategy used for finding coupling pairs",
|
|
68784
|
+
"default": "bruteforce_with_binning",
|
|
68785
|
+
"type": "string",
|
|
68786
|
+
"enum": [
|
|
68787
|
+
"bruteforce_with_binning",
|
|
68788
|
+
"bounding_volume_hierarchy"
|
|
68789
|
+
]
|
|
68790
|
+
}
|
|
68791
|
+
},
|
|
68792
|
+
"additionalProperties": false
|
|
68793
|
+
},
|
|
68794
|
+
"BEAM INTERACTION/BEAM TO BEAM CONTACT": {
|
|
68795
|
+
"title": "BEAM INTERACTION/BEAM TO BEAM CONTACT (group)",
|
|
68766
68796
|
"description": "No description yet.",
|
|
68767
68797
|
"type": "object",
|
|
68768
68798
|
"properties": {
|
|
@@ -68880,8 +68910,44 @@
|
|
|
68880
68910
|
},
|
|
68881
68911
|
"additionalProperties": false
|
|
68882
68912
|
},
|
|
68883
|
-
"BEAM
|
|
68884
|
-
"title": "BEAM
|
|
68913
|
+
"BEAM INTERACTION/BEAM TO BEAM CONTACT CONDITIONS": {
|
|
68914
|
+
"title": "BEAM INTERACTION/BEAM TO BEAM CONTACT CONDITIONS (list)",
|
|
68915
|
+
"description": "Beam-to-beam contact conditions",
|
|
68916
|
+
"type": "array",
|
|
68917
|
+
"items": {
|
|
68918
|
+
"type": "object",
|
|
68919
|
+
"properties": {
|
|
68920
|
+
"E": {
|
|
68921
|
+
"title": "E (int)",
|
|
68922
|
+
"description": "ID of the condition. This ID refers to the respective topological entity of the condition.",
|
|
68923
|
+
"type": "integer"
|
|
68924
|
+
},
|
|
68925
|
+
"ENTITY_TYPE": {
|
|
68926
|
+
"title": "ENTITY_TYPE (enum)",
|
|
68927
|
+
"description": "The type of entity that E refers to.",
|
|
68928
|
+
"default": "legacy_id",
|
|
68929
|
+
"type": "string",
|
|
68930
|
+
"enum": [
|
|
68931
|
+
"legacy_id",
|
|
68932
|
+
"node_set_id",
|
|
68933
|
+
"element_block_id"
|
|
68934
|
+
]
|
|
68935
|
+
},
|
|
68936
|
+
"COUPLING_ID": {
|
|
68937
|
+
"title": "COUPLING_ID (int)",
|
|
68938
|
+
"description": "No description yet.",
|
|
68939
|
+
"type": "integer"
|
|
68940
|
+
}
|
|
68941
|
+
},
|
|
68942
|
+
"additionalProperties": false,
|
|
68943
|
+
"required": [
|
|
68944
|
+
"E",
|
|
68945
|
+
"COUPLING_ID"
|
|
68946
|
+
]
|
|
68947
|
+
}
|
|
68948
|
+
},
|
|
68949
|
+
"BEAM INTERACTION/BEAM TO BEAM CONTACT/RUNTIME VTK OUTPUT": {
|
|
68950
|
+
"title": "BEAM INTERACTION/BEAM TO BEAM CONTACT/RUNTIME VTK OUTPUT (group)",
|
|
68885
68951
|
"description": "No description yet.",
|
|
68886
68952
|
"type": "object",
|
|
68887
68953
|
"properties": {
|
|
@@ -68930,92 +68996,6 @@
|
|
|
68930
68996
|
},
|
|
68931
68997
|
"additionalProperties": false
|
|
68932
68998
|
},
|
|
68933
|
-
"BEAM INTERACTION": {
|
|
68934
|
-
"title": "BEAM INTERACTION (group)",
|
|
68935
|
-
"description": "No description yet.",
|
|
68936
|
-
"type": "object",
|
|
68937
|
-
"properties": {
|
|
68938
|
-
"REPARTITIONSTRATEGY": {
|
|
68939
|
-
"title": "REPARTITIONSTRATEGY (enum)",
|
|
68940
|
-
"description": "Type of employed repartitioning strategy",
|
|
68941
|
-
"default": "Adaptive",
|
|
68942
|
-
"type": "string",
|
|
68943
|
-
"enum": [
|
|
68944
|
-
"Adaptive",
|
|
68945
|
-
"Everydt",
|
|
68946
|
-
"adaptive",
|
|
68947
|
-
"everydt"
|
|
68948
|
-
]
|
|
68949
|
-
},
|
|
68950
|
-
"SEARCH_STRATEGY": {
|
|
68951
|
-
"title": "SEARCH_STRATEGY (enum)",
|
|
68952
|
-
"description": "Type of search strategy used for finding coupling pairs",
|
|
68953
|
-
"default": "bruteforce_with_binning",
|
|
68954
|
-
"type": "string",
|
|
68955
|
-
"enum": [
|
|
68956
|
-
"bruteforce_with_binning",
|
|
68957
|
-
"bounding_volume_hierarchy"
|
|
68958
|
-
]
|
|
68959
|
-
}
|
|
68960
|
-
},
|
|
68961
|
-
"additionalProperties": false
|
|
68962
|
-
},
|
|
68963
|
-
"BEAM INTERACTION/BEAM TO BEAM CONTACT": {
|
|
68964
|
-
"title": "BEAM INTERACTION/BEAM TO BEAM CONTACT (group)",
|
|
68965
|
-
"description": "No description yet.",
|
|
68966
|
-
"type": "object",
|
|
68967
|
-
"properties": {
|
|
68968
|
-
"STRATEGY": {
|
|
68969
|
-
"title": "STRATEGY (enum)",
|
|
68970
|
-
"description": "Type of employed solving strategy",
|
|
68971
|
-
"default": "None",
|
|
68972
|
-
"type": "string",
|
|
68973
|
-
"enum": [
|
|
68974
|
-
"None",
|
|
68975
|
-
"Penalty",
|
|
68976
|
-
"none",
|
|
68977
|
-
"penalty"
|
|
68978
|
-
]
|
|
68979
|
-
}
|
|
68980
|
-
},
|
|
68981
|
-
"additionalProperties": false
|
|
68982
|
-
},
|
|
68983
|
-
"BEAM INTERACTION/BEAM TO BEAM CONTACT CONDITIONS": {
|
|
68984
|
-
"title": "BEAM INTERACTION/BEAM TO BEAM CONTACT CONDITIONS (list)",
|
|
68985
|
-
"description": "Beam-to-beam contact conditions",
|
|
68986
|
-
"type": "array",
|
|
68987
|
-
"items": {
|
|
68988
|
-
"type": "object",
|
|
68989
|
-
"properties": {
|
|
68990
|
-
"E": {
|
|
68991
|
-
"title": "E (int)",
|
|
68992
|
-
"description": "ID of the condition. This ID refers to the respective topological entity of the condition.",
|
|
68993
|
-
"type": "integer"
|
|
68994
|
-
},
|
|
68995
|
-
"ENTITY_TYPE": {
|
|
68996
|
-
"title": "ENTITY_TYPE (enum)",
|
|
68997
|
-
"description": "The type of entity that E refers to.",
|
|
68998
|
-
"default": "legacy_id",
|
|
68999
|
-
"type": "string",
|
|
69000
|
-
"enum": [
|
|
69001
|
-
"legacy_id",
|
|
69002
|
-
"node_set_id",
|
|
69003
|
-
"element_block_id"
|
|
69004
|
-
]
|
|
69005
|
-
},
|
|
69006
|
-
"COUPLING_ID": {
|
|
69007
|
-
"title": "COUPLING_ID (int)",
|
|
69008
|
-
"description": "No description yet.",
|
|
69009
|
-
"type": "integer"
|
|
69010
|
-
}
|
|
69011
|
-
},
|
|
69012
|
-
"additionalProperties": false,
|
|
69013
|
-
"required": [
|
|
69014
|
-
"E",
|
|
69015
|
-
"COUPLING_ID"
|
|
69016
|
-
]
|
|
69017
|
-
}
|
|
69018
|
-
},
|
|
69019
68999
|
"BEAM INTERACTION/BEAM TO BEAM POINT COUPLING CONDITIONS": {
|
|
69020
69000
|
"title": "BEAM INTERACTION/BEAM TO BEAM POINT COUPLING CONDITIONS (list)",
|
|
69021
69001
|
"description": "Coupling conditions between beams based on closest point projections.",
|
|
@@ -402293,5 +402273,5 @@
|
|
|
402293
402273
|
"PROBLEM TYPE"
|
|
402294
402274
|
],
|
|
402295
402275
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
402296
|
-
"$id": "
|
|
402276
|
+
"$id": "06d4d904c17421c86b75ff8b31abf86ea88d6f45"
|
|
402297
402277
|
}
|
|
@@ -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.42.0'
|
|
32
|
+
__version_tuple__ = version_tuple = (1, 42, 0)
|
|
33
33
|
|
|
34
|
-
__commit_id__ = commit_id = '
|
|
34
|
+
__commit_id__ = commit_id = 'gb7932673f'
|
|
@@ -448,15 +448,15 @@ def test_roundtrip_test(fourc_file, tmp_path):
|
|
|
448
448
|
# Load 4C input test file
|
|
449
449
|
fourc_input = FourCInput.from_4C_yaml(fourc_file)
|
|
450
450
|
|
|
451
|
-
#
|
|
452
|
-
fourc_file.
|
|
451
|
+
# Create new file to keep original file (necessary for parallel test execution)
|
|
452
|
+
fourcipp_file = fourc_file.parent / (fourc_file.stem + "_fourcipp.4C.yaml")
|
|
453
453
|
|
|
454
454
|
# Dump out again
|
|
455
|
-
fourc_input.dump(
|
|
455
|
+
fourc_input.dump(fourcipp_file, validate=True)
|
|
456
456
|
|
|
457
457
|
# Command
|
|
458
458
|
command = (
|
|
459
|
-
f"/home/user/4C/build/4C {
|
|
459
|
+
f"/home/user/4C/build/4C {fourcipp_file} xxx > {tmp_path / 'output.log'} 2>&1"
|
|
460
460
|
)
|
|
461
461
|
|
|
462
462
|
# Run 4C with the dumped input
|
|
@@ -465,7 +465,7 @@ def test_roundtrip_test(fourc_file, tmp_path):
|
|
|
465
465
|
# Exit code -> 4C failed
|
|
466
466
|
if return_code:
|
|
467
467
|
raise SubprocessError(
|
|
468
|
-
f"Input file failed for {
|
|
468
|
+
f"Input file failed for {fourcipp_file}.\n\n4C command: {command}\n\nOutput: {(tmp_path / 'output.log').read_text()}"
|
|
469
469
|
)
|
|
470
470
|
|
|
471
471
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|