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
Original file line number Diff line number Diff line change
Expand Up @@ -1102,7 +1102,8 @@ void Solid::ModelEvaluator::Structure::output_runtime_structure_gauss_point_data
nullptr, nullptr, nullptr};
std::array<std::shared_ptr<Core::LinAlg::SparseOperator>, 2> eval_mat = {nullptr, nullptr};

evaluate_internal(eval_mat.data(), eval_vec.data());
evaluate_internal_specified_elements(
eval_mat.data(), eval_vec.data(), discret().element_row_map());

eval_data().gauss_point_data_output_manager_ptr()->post_evaluate();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ IO:
OUTPUT_SPRING: true
STRUCT_STRESS: "Cauchy"
STRUCT_STRAIN: "GL"
WRITE_INITIAL_STATE: false
VERBOSITY: "Standard"
IO/RUNTIME VTK OUTPUT:
INTERVAL_STEPS: 5
Expand Down
Loading