Skip to content

Commit

Permalink
fixes lite issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbuche committed Nov 6, 2024
1 parent 5383000 commit 22bd150
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/fem/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -659,6 +659,14 @@ fn write_finite_elements_to_exodus(
file.add_attribute::<f32>("api_version", 8.25)?;
file.add_attribute::<i32>("file_size", 1)?;
file.add_attribute::<i32>("floating_point_word_size", 8)?;
file.add_attribute::<String>(
"title",
format!(
"autotwin.automesh, version {}, autogenerated on {}",
env!("CARGO_PKG_VERSION"),
Utc::now()
),
)?;
file.add_attribute::<f32>("version", 8.25)?;
let mut element_blocks_unique = element_blocks.clone();
element_blocks_unique.sort();
Expand Down

0 comments on commit 22bd150

Please sign in to comment.