You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IOSS: Default to not munging block/set names on database
Original behavior was to convert all database block/set names to
lowercase and convert spaces to '_'. The new default is proposed to
be leaving the database names as they are read from the database and
adding an alias of the name lowercased.
Added property `LOWER_CASE_DATABASE_NAMES` which is false by default.
If true, then previous behavior is returned.
io_shell has --lower_case_database_names option to also select that
behavior for testing.
Copy file name to clipboardExpand all lines: packages/seacas/libraries/ioss/src/Ioss_Doxygen.h
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,7 @@ par_cgns | Input/Output | alias for parallel CGNS
47
47
----------|:--------:|------------
48
48
LOGGING | on/[off] | enable/disable logging of field input/output
49
49
LOWER_CASE_VARIABLE_NAMES | [on]/off | Convert all variable names read from input database to lowercase; replace ' ' with '_'
50
+
LOWER_CASE_DATABASE_NAMES | on/[off] | Convert all block/set names read from input database to lowercase; replace ' ' with '_'
50
51
USE_GENERIC_CANONICAL_NAMES | on/[off] | use `block_{id}` as canonical name of an element block instead of the name (if any) stored on the database. The database name will be an alias.
51
52
IGNORE_DATABASE_NAMES | on/[off] | Do not read any element block, nodeset, ... names if they exist on the database. Use only the canonical generated names (entitytype + _ + id)
52
53
IGNORE_ATTRIBUTE_NAMES | on/[off] | Do not read the attribute names that may exist on an input database. Instead for an element block with N attributes, the fields will be named `attribute_1` ... `attribute_N`
0 commit comments