FourCIPP 1.16.0__tar.gz → 1.17.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.16.0/src/FourCIPP.egg-info → fourcipp-1.17.0}/PKG-INFO +1 -1
- {fourcipp-1.16.0 → fourcipp-1.17.0/src/FourCIPP.egg-info}/PKG-INFO +1 -1
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/config/4C_metadata.yaml +53 -8
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/config/4C_schema.json +3780 -3707
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/version.py +3 -3
- {fourcipp-1.16.0 → fourcipp-1.17.0}/.coveragerc +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/.github/workflows/check_code.yaml +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/.github/workflows/publish_pypi.yaml +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/.github/workflows/run_testsuite.yaml +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/.github/workflows/tag_version.yaml +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/.github/workflows/update_4C_metadata_schema_file.yaml +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/.gitignore +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/.pre-commit-config.yaml +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/LICENSE +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/README.md +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/docs/assets/fourcipp_logo_black.svg +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/docs/assets/fourcipp_logo_white.svg +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/pyproject.toml +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/requirements.in +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/requirements.txt +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/setup.cfg +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/FourCIPP.egg-info/SOURCES.txt +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/FourCIPP.egg-info/dependency_links.txt +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/FourCIPP.egg-info/entry_points.txt +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/FourCIPP.egg-info/requires.txt +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/FourCIPP.egg-info/top_level.txt +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/__init__.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/config/config.yaml +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/fourc_input.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/legacy_io/__init__.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/legacy_io/element.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/legacy_io/inline_dat.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/legacy_io/node.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/legacy_io/node_topology.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/legacy_io/particle.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/utils/__init__.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/utils/cli.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/utils/configuration.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/utils/converter.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/utils/dict_utils.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/utils/metadata.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/utils/not_set.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/utils/type_hinting.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/utils/validation.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/src/fourcipp/utils/yaml_io.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/__init__.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/conftest.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/__init__.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/legacy_io/__init__.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/legacy_io/test_element.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/legacy_io/test_inline_dat.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/legacy_io/test_legacy_io.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/legacy_io/test_node.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/legacy_io/test_node_topology.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/legacy_io/test_particle.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/legacy_io/utils.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/test_fourc_input.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/test_readme_quickstart_example.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/utils/__init__.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/utils/test_configuration.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/utils/test_converter.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/utils/test_dict_utils.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/utils/test_metadata.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/utils/test_not_set.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/utils/test_validation.py +0 -0
- {fourcipp-1.16.0 → fourcipp-1.17.0}/tests/fourcipp/utils/test_yaml_io.py +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
metadata:
|
|
2
|
-
commit_hash:
|
|
2
|
+
commit_hash: 5dc63e5ed9f76144a8ea45d10545a8e8570b4f42
|
|
3
3
|
version: 2025.4.0-dev
|
|
4
4
|
description_section_name: TITLE
|
|
5
5
|
legacy_element_specs:
|
|
@@ -45088,6 +45088,56 @@ sections:
|
|
|
45088
45088
|
choices:
|
|
45089
45089
|
- name: "at_wall"
|
|
45090
45090
|
- name: "viscous_tangent"
|
|
45091
|
+
- name: DESIGN LINE MODE FOR KRYLOV SPACE PROJECTION
|
|
45092
|
+
type: list
|
|
45093
|
+
required: false
|
|
45094
|
+
spec:
|
|
45095
|
+
type: all_of
|
|
45096
|
+
specs:
|
|
45097
|
+
- name: E
|
|
45098
|
+
type: int
|
|
45099
|
+
description: "ID of the condition. This ID refers to the respective topological entity of the condition."
|
|
45100
|
+
required: true
|
|
45101
|
+
- name: ENTITY_TYPE
|
|
45102
|
+
type: enum
|
|
45103
|
+
description: "The type of entity that E refers to."
|
|
45104
|
+
required: false
|
|
45105
|
+
default: legacy_id
|
|
45106
|
+
choices:
|
|
45107
|
+
- name: legacy_id
|
|
45108
|
+
- name: node_set_id
|
|
45109
|
+
- name: element_block_id
|
|
45110
|
+
- name: DIS
|
|
45111
|
+
type: enum
|
|
45112
|
+
description: "discretization"
|
|
45113
|
+
required: true
|
|
45114
|
+
choices:
|
|
45115
|
+
- name: "fluid"
|
|
45116
|
+
- name: "scatra"
|
|
45117
|
+
- name: "structure"
|
|
45118
|
+
- name: NUMMODES
|
|
45119
|
+
type: int
|
|
45120
|
+
required: true
|
|
45121
|
+
- name: ONOFF
|
|
45122
|
+
type: vector
|
|
45123
|
+
value_type:
|
|
45124
|
+
type: int
|
|
45125
|
+
required: true
|
|
45126
|
+
- name: WEIGHTVECDEF
|
|
45127
|
+
type: enum
|
|
45128
|
+
description: "weight vector definition"
|
|
45129
|
+
required: true
|
|
45130
|
+
choices:
|
|
45131
|
+
- name: "integration"
|
|
45132
|
+
- name: "pointvalues"
|
|
45133
|
+
- name: TYPE
|
|
45134
|
+
type: enum
|
|
45135
|
+
description: "Type of krylov projection enforcement."
|
|
45136
|
+
required: false
|
|
45137
|
+
default: "projection"
|
|
45138
|
+
choices:
|
|
45139
|
+
- name: "constraint"
|
|
45140
|
+
- name: "projection"
|
|
45091
45141
|
- name: DESIGN LINE MORTAR CONTACT CONDITIONS 2D
|
|
45092
45142
|
type: list
|
|
45093
45143
|
required: false
|
|
@@ -77182,11 +77232,6 @@ sections:
|
|
|
77182
77232
|
description: "write reaction force output every INTERVAL_STEPS steps"
|
|
77183
77233
|
required: false
|
|
77184
77234
|
default: -1
|
|
77185
|
-
- name: PRECISION_FILE
|
|
77186
|
-
type: int
|
|
77187
|
-
description: "precision for written file"
|
|
77188
|
-
required: false
|
|
77189
|
-
default: 16
|
|
77190
77235
|
- name: PRECISION_SCREEN
|
|
77191
77236
|
type: int
|
|
77192
77237
|
description: "precision for written screen output"
|
|
@@ -77199,8 +77244,8 @@ sections:
|
|
|
77199
77244
|
default: csv
|
|
77200
77245
|
choices:
|
|
77201
77246
|
- name: csv
|
|
77202
|
-
- name:
|
|
77203
|
-
- name:
|
|
77247
|
+
- name: yaml
|
|
77248
|
+
- name: WRITE_CONDITION_INFORMATION
|
|
77204
77249
|
type: bool
|
|
77205
77250
|
description: "write information about monitored boundary condition to output file"
|
|
77206
77251
|
required: false
|