Skip to content

Commit

Permalink
Merge Pull Request #8080 from trilinos/Trilinos/lower-case-diff
Browse files Browse the repository at this point in the history
Automatically Merged using Trilinos Pull Request AutoTester
PR Title: Lower case diff
PR Author: bathmatt
  • Loading branch information
trilinos-autotester authored Sep 23, 2020
2 parents 4562cf8 + feb5d97 commit 06c2152
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -630,17 +630,18 @@ setupExodusFile(const std::string& filename,
meshData_ = rcp(new StkMeshIoBroker(comm));
meshData_->set_bulk_data(bulkData_);
meshData_->enable_edge_io();
Ioss::PropertyManager props;
props.add(Ioss::Property("LOWER_CASE_VARIABLE_NAMES", "FALSE"));
if (append) {
if (append_after_restart_time) {
Ioss::PropertyManager props;
meshIndex_ = meshData_->create_output_mesh(filename, stk::io::APPEND_RESULTS,
props, restart_time);
}
else // Append results to the end of the file
meshIndex_ = meshData_->create_output_mesh(filename, stk::io::APPEND_RESULTS);
meshIndex_ = meshData_->create_output_mesh(filename, stk::io::APPEND_RESULTS, props);
}
else
meshIndex_ = meshData_->create_output_mesh(filename, stk::io::WRITE_RESULTS);
meshIndex_ = meshData_->create_output_mesh(filename, stk::io::WRITE_RESULTS, props);
const FieldVector& fields = metaData_->get_fields();
for (size_t i(0); i < fields.size(); ++i) {
// Do NOT add MESH type stk fields to exodus io, but do add everything
Expand Down

0 comments on commit 06c2152

Please sign in to comment.