Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/multiphysics/src/common/include/mesh_io.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6836,7 +6836,7 @@ class MeshWriter
fprintf(out[0], " <Collection>\n");

for (int i = 0; i <= graphics_id; i++) {
fprintf(out[0], " <DataSet timestep=\"%12.5e\" file=\"data/Fierro.solver%zu.%05d.vtm\" time= \"%12.5e\" />\n",
fprintf(out[0], " <DataSet timestep=\"%.5e\" file=\"data/Fierro.solver%zu.%05d.vtm\" time=\"%.5e\" />\n",
graphics_times(i), solver_id, i, graphics_times(i) );
//fprintf(out[0], " <DataSet timestep=\"%d\" file=\"data/Fierro.solver%zu.%05d.vtm\" time= \"%12.5e\" />\n",
// i, solver_id, i, graphics_times(i) );
Expand Down
1 change: 1 addition & 0 deletions apps/multiphysics/src/common/src/region_fill.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1294,6 +1294,7 @@ void material_state_setup(SimulationParameters_t& SimulationParamaters,
} // end loop over materials in this element
} // end serial for loop over all elements
State.MaterialToMeshMaps.elem_in_mat_elem.update_device();
State.MeshtoMaterialMaps.mat_elems_in_elem.update_device();


// copy the state to the device
Expand Down
Loading