12 lines
251 B
C++
12 lines
251 B
C++
module;
|
|
#include <mfem.hpp>
|
|
|
|
export module mean_field:physics.solid_body;
|
|
export import :fem;
|
|
|
|
export namespace mean_field::physics {
|
|
double compute_moment_of_inertia(
|
|
const fem::FEM &fem,
|
|
const mfem::GridFunction &rho_ref
|
|
);
|
|
} |