19#include <spdlog/sinks/stdout_color_sinks.h>
20#include <spdlog/sinks/basic_file_sink.h>
21#include <spdlog/sinks/ostream_sink.h>
23#include <ipc/utils/logger.hpp>
24#include <wmtk/utils/Logger.hpp>
34 spdlog::level::level_enum,
35 {{spdlog::level::level_enum::trace,
"trace"},
36 {spdlog::level::level_enum::debug,
"debug"},
37 {spdlog::level::level_enum::info,
"info"},
38 {spdlog::level::level_enum::warn,
"warning"},
39 {spdlog::level::level_enum::err,
"error"},
40 {spdlog::level::level_enum::critical,
"critical"},
41 {spdlog::level::level_enum::off,
"off"},
42 {spdlog::level::level_enum::trace, 0},
43 {spdlog::level::level_enum::debug, 1},
44 {spdlog::level::level_enum::info, 2},
45 {spdlog::level::level_enum::warn, 3},
46 {spdlog::level::level_enum::err, 3},
47 {spdlog::level::level_enum::critical, 4},
48 {spdlog::level::level_enum::off, 5}})
53 using namespace problem;
54 using namespace utils;
66 const std::string &log_file,
67 const spdlog::level::level_enum log_level,
68 const spdlog::level::level_enum file_log_level,
71 std::vector<spdlog::sink_ptr> sinks;
75 console_sink_ = std::make_shared<spdlog::sinks::stdout_color_sink_mt>();
79 if (!log_file.empty())
81 file_sink_ = std::make_shared<spdlog::sinks::basic_file_sink_mt>(log_file,
true);
88 spdlog::flush_every(std::chrono::seconds(3));
93 std::vector<spdlog::sink_ptr> sinks;
94 sinks.emplace_back(std::make_shared<spdlog::sinks::ostream_sink_mt>(os,
false));
99 const std::vector<spdlog::sink_ptr> &sinks,
100 const spdlog::level::level_enum log_level)
102 set_logger(std::make_shared<spdlog::logger>(
"polyfem", sinks.begin(), sinks.end()));
105 ipc::set_logger(std::make_shared<spdlog::logger>(
"ipctk", sinks.begin(), sinks.end()));
107 wmtk::set_logger(std::make_shared<spdlog::logger>(
"wmtk", sinks.begin(), sinks.end()));
110 logger().set_level(spdlog::level::trace);
111 ipc::logger().set_level(spdlog::level::trace);
112 wmtk::logger().set_level(spdlog::level::trace);
119 spdlog::set_level(log_level);
128 logger().set_level(log_level);
129 ipc::logger().set_level(log_level);
135 json args_in = p_args_in;
143 jse.strict = strict_validation;
144 const std::string polyfem_input_spec = POLYFEM_INPUT_SPEC;
145 std::ifstream file(polyfem_input_spec);
151 logger().error(
"unable to open {} rules", polyfem_input_spec);
152 throw std::runtime_error(
"Invald spec file");
155 jse.include_directories.push_back(POLYFEM_JSON_SPEC_DIR);
156 jse.include_directories.push_back(POLYSOLVE_JSON_SPEC_DIR);
157 rules = jse.inject_include(rules);
159 polysolve::linear::Solver::apply_default_solver(rules,
"/solver/linear");
160 polysolve::linear::Solver::apply_default_solver(rules,
"/solver/adjoint_linear");
163 polysolve::linear::Solver::select_valid_solver(args_in[
"solver"][
"linear"],
logger());
164 if (args_in[
"solver"][
"adjoint_linear"].is_null())
165 args_in[
"solver"][
"adjoint_linear"] = args_in[
"solver"][
"linear"];
167 polysolve::linear::Solver::select_valid_solver(args_in[
"solver"][
"adjoint_linear"],
logger());
170 if (args_in.contains(
"/solver/nonlinear"_json_pointer))
172 if (args_in.contains(
"/solver/augmented_lagrangian/nonlinear"_json_pointer))
174 assert(args_in[
"solver"][
"augmented_lagrangian"][
"nonlinear"].is_object());
177 json nonlinear = args_in[
"solver"][
"nonlinear"];
178 nonlinear.merge_patch(args_in[
"solver"][
"augmented_lagrangian"][
"nonlinear"]);
179 args_in[
"solver"][
"augmented_lagrangian"][
"nonlinear"] = nonlinear;
184 args_in[
"solver"][
"augmented_lagrangian"][
"nonlinear"] = args_in[
"solver"][
"nonlinear"];
188 const bool valid_input = jse.verify_json(args_in, rules);
192 logger().error(
"invalid input json:\n{}", jse.log2str());
193 throw std::runtime_error(
"Invald input json file");
197 this->
args = jse.inject_defaults(args_in, rules);
202 if (!output_dir.empty())
204 std::filesystem::create_directories(
output_dir);
208 std::string out_path_log = this->
args[
"output"][
"log"][
"path"];
209 if (!out_path_log.empty())
216 this->
args[
"output"][
"log"][
"level"],
217 this->
args[
"output"][
"log"][
"file_level"],
218 this->
args[
"output"][
"log"][
"quiet"]);
220 logger().info(
"Saving output to {}", output_dir);
222 const unsigned int thread_in = this->
args[
"solver"][
"max_threads"];
225 has_dhat = args_in[
"contact"].contains(
"dhat");
231 if (
args[
"solver"][
"contact"][
"friction_iterations"] == 0)
233 logger().info(
"specified friction_iterations is 0; disabling friction");
234 args[
"contact"][
"friction_coefficient"] = 0.0;
236 else if (
args[
"solver"][
"contact"][
"friction_iterations"] < 0)
238 args[
"solver"][
"contact"][
"friction_iterations"] = std::numeric_limits<int>::max();
240 if (
args[
"contact"][
"friction_coefficient"] == 0.0)
242 args[
"solver"][
"contact"][
"friction_iterations"] = 0;
247 args[
"solver"][
"contact"][
"friction_iterations"] = 0;
248 args[
"contact"][
"friction_coefficient"] = 0;
249 args[
"contact"][
"periodic"] =
false;
258 if (!other_name.empty())
264 if (!
args.contains(
"preset_problem"))
267 problem = std::make_shared<assembler::GenericScalarProblem>(
"GenericScalar");
269 problem = std::make_shared<assembler::GenericTensorProblem>(
"GenericTensor");
272 if (!
args[
"time"].is_null())
274 const auto tmp = R
"({"is_time_dependent": true})"_json;
279 auto bc =
args[
"boundary_conditions"];
282 problem->set_parameters(
args[
"initial_conditions"]);
288 if (
args[
"preset_problem"][
"type"] ==
"Kernel")
309 if (!
args[
"contact"][
"use_convergent_formulation"])
311 args[
"contact"][
"use_convergent_formulation"] =
true;
312 logger().info(
"Use convergent formulation for differentiable contact...");
314 if (
args[
"/solver/contact/barrier_stiffness"_json_pointer].is_string())
316 logger().error(
"Only constant barrier stiffness is supported in differentiable contact!");
320 if (
args.contains(
"boundary_conditions") &&
args[
"boundary_conditions"].contains(
"rhs"))
323 if ((
rhs.is_array() &&
rhs.size() > 0 &&
rhs[0].is_string()) ||
rhs.is_string())
324 logger().error(
"Only constant rhs over space is supported in differentiable code!");
351 else if (num_valid == 2)
361 time_steps = int(ceil((tend - t0) / dt));
362 assert(time_steps > 0);
366 time_steps =
args[
"time"][
"time_steps"];
367 assert(time_steps > 0);
368 dt = (tend - t0) / time_steps;
373 throw std::runtime_error(
"This code should be unreachable!");
384 time_steps =
args[
"time"][
"time_steps"];
385 assert(time_steps > 0);
387 tend = t0 + time_steps * dt;
392 throw std::runtime_error(
"This code should be unreachable!");
395 else if (num_valid == 3)
399 time_steps =
args[
"time"][
"time_steps"];
402 if (abs(t0 + dt * time_steps - tend) > 1e-12)
409 args[
"time"][
"tend"] = tend;
410 args[
"time"][
"dt"] = dt;
411 args[
"time"][
"time_steps"] = time_steps;
415 logger().info(
"t0={}, dt={}, tend={}", t0, dt, tend);
421 for (
auto &a : assemblers)
427 if (!
args[
"materials"].is_array() &&
args[
"materials"][
"type"] ==
"AMIPSAutodiff")
429 json transform_params = {};
430 transform_params[
"canonical_transformation"] = json::array();
431 if (!
mesh->is_volume())
433 Eigen::MatrixXd regular_tri(3, 3);
434 regular_tri << 0, 0, 1,
436 1. / 2., std::sqrt(3) / 2., 1;
437 regular_tri.transposeInPlace();
438 Eigen::MatrixXd regular_tri_inv = regular_tri.inverse();
441 for (
int e = 0; e <
mesh->n_elements(); e++)
443 Eigen::MatrixXd transform;
445 transform_params[
"canonical_transformation"].push_back(
json({
459 Eigen::MatrixXd regular_tet(4, 4);
460 regular_tet << 0, 0, 0, 1,
462 1. / 2., std::sqrt(3) / 2., 0, 1,
463 1. / 2., 1. / 2. / std::sqrt(3), std::sqrt(3) / 2., 1;
464 regular_tet.transposeInPlace();
465 Eigen::MatrixXd regular_tet_inv = regular_tet.inverse();
468 for (
int e = 0; e <
mesh->n_elements(); e++)
470 Eigen::MatrixXd transform;
472 transform_params[
"canonical_transformation"].push_back(
json({
491 transform_params[
"solve_displacement"] =
true;
497 std::vector<int> body_ids(
mesh->n_elements());
498 for (
int i = 0; i <
mesh->n_elements(); ++i)
499 body_ids[i] =
mesh->get_body_id(i);
501 for (
auto &a : assemblers)
502 a->set_materials(body_ids,
args[
"materials"],
units);
507 const int size = (this->assembler->
is_tensor() || this->assembler->
is_fluid()) ? this->
mesh->dimension() : 1;
513 std::vector<int> body_ids(
mesh->n_elements());
514 for (
int i = 0; i <
mesh->n_elements(); ++i)
515 body_ids[i] =
mesh->get_body_id(i);
std::string formulation() const
return the formulation (checks if the problem is scalar or not and deals with multiphysics)
void init(const json &args, const bool strict_validation)
initialize the polyfem solver with a json settings
std::string root_path() const
Get the root path for the state (e.g., args["root_path"] or ".")
std::shared_ptr< assembler::Assembler > assembler
assemblers
std::string resolve_output_path(const std::string &path) const
Resolve output path relative to output_dir if the path is not absolute.
std::string output_dir
Directory for output files.
solver::CacheLevel optimization_enabled
void set_materials(std::vector< std::shared_ptr< assembler::Assembler > > &assemblers) const
set the material and the problem dimension
void set_max_threads(const int max_threads=std::numeric_limits< int >::max())
std::shared_ptr< assembler::Assembler > pressure_assembler
std::shared_ptr< assembler::Mass > mass_matrix_assembler
bool has_dhat
stores if input json contains dhat
std::unique_ptr< mesh::Mesh > mesh
current mesh, it can be a Mesh2D or Mesh3D
std::shared_ptr< assembler::Problem > problem
current problem, it contains rhs and bc
spdlog::sink_ptr file_sink_
spdlog::sink_ptr console_sink_
logger sink to stdout
json args
main input arguments containing all defaults
void set_log_level(const spdlog::level::level_enum log_level)
change log level
void init_time()
initialize time settings if args contains "time"
std::string resolve_input_path(const std::string &path, const bool only_if_exists=false) const
Resolve input path relative to root_path() if the path is not absolute.
void init_logger(const std::string &log_file, const spdlog::level::level_enum log_level, const spdlog::level::level_enum file_log_level, const bool is_quiet)
initializing the logger
bool is_contact_enabled() const
does the simulation has contact
std::shared_ptr< assembler::MixedAssembler > mixed_assembler
Eigen::MatrixXd rhs
System right-hand side.
void init(const json &json)
double characteristic_length() const
static double convert(const json &val, const std::string &unit_type)
const std::string & time() const
virtual bool is_tensor() const
virtual void set_size(const int size)
virtual bool is_fluid() const
static std::shared_ptr< MixedAssembler > make_mixed_assembler(const std::string &formulation)
static std::string other_assembler_name(const std::string &formulation)
static std::shared_ptr< Assembler > make_assembler(const std::string &formulation)
void compute_face_jacobian(const int el_id, const Eigen::MatrixXd &reference_map, Eigen::MatrixXd &jacobian) const
void compute_cell_jacobian(const int el_id, const Eigen::MatrixXd &reference_map, Eigen::MatrixXd &jacobian) const
static const ProblemFactory & factory()
std::shared_ptr< assembler::Problem > get_problem(const std::string &problem) const
void set_logger(spdlog::logger &logger)
static GeogramUtils & instance()
void set_num_threads(const int max_threads)
NLOHMANN_JSON_SERIALIZE_ENUM(CollisionProxyTessellation, {{CollisionProxyTessellation::REGULAR, "regular"}, {CollisionProxyTessellation::IRREGULAR, "irregular"}})
bool is_param_valid(const json ¶ms, const std::string &key)
Determine if a key exists and is non-null in a json object.
void apply_common_params(json &args)
spdlog::logger & logger()
Retrieves the current logger.
void set_logger(std::shared_ptr< spdlog::logger > p_logger)
Setup a logger object to be used by Polyfem.
void log_and_throw_error(const std::string &msg)