Skip to content

Commit

Permalink
Disable lower case var names for STK IO
Browse files Browse the repository at this point in the history
  • Loading branch information
jgfouca committed Jul 20, 2016
1 parent 856133d commit c5c5b46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ Teuchos::RCP<STK_Interface> STK_ExodusReaderFactory::buildUncommitedMesh(stk::Pa

// read in meta data
stk::io::StkMeshIoBroker* meshData = new stk::io::StkMeshIoBroker(parallelMach);
meshData->property_add(Ioss::Property("LOWER_CASE_VARIABLE_NAMES", false));
meshData->add_mesh_database(fileName_, "exodusII", stk::io::READ_MESH);
meshData->create_input_mesh();
RCP<stk::mesh::MetaData> metaData = meshData->meta_data_rcp();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ Teuchos::RCP<STK_Interface> STK_PamgenReaderFactory::buildUncommitedMesh(stk::Pa

// read in meta data
stk::io::StkMeshIoBroker* meshData = new stk::io::StkMeshIoBroker(parallelMach);
meshData->property_add(Ioss::Property("LOWER_CASE_VARIABLE_NAMES", false));
meshData->add_mesh_database(fileName_, "pamgen", stk::io::READ_MESH);
meshData->create_input_mesh();
RCP<stk::mesh::MetaData> metaData = meshData->meta_data_rcp();
Expand Down

0 comments on commit c5c5b46

Please sign in to comment.