OGS
NonLinearFbar.cpp
Go to the documentation of this file.
1
12#include "NonLinearFbar.h"
13
14namespace ProcessLib
15{
16namespace NonLinearFbar
17{
18
20 std::string_view const bar_det_f_type_name)
21{
22 if (boost::iequals(bar_det_f_type_name, "element_center_value"))
23 {
24 INFO(
25 "Use F bar method with the element center value of F for the "
26 "det(F) modification.");
28 }
29 if (boost::iequals(bar_det_f_type_name, "element_average"))
30 {
31 INFO(
32 "Use F bar method with the element average of F for the det(F) "
33 "modification.");
35 }
36
37 return BarDetFType::NONE;
38}
39} // namespace NonLinearFbar
40} // namespace ProcessLib
void INFO(fmt::format_string< Args... > fmt, Args &&... args)
Definition Logging.h:35
BarDetFType convertStringToDetFBarType(std::string_view const bar_det_f_type_name)