feat(surface): major work on implementing surface constraints in a presciption agnostic manner

This commit is contained in:
2026-08-30 16:41:14 -04:00
parent 36adfa1174
commit 0a7f18c5c7
95 changed files with 30144 additions and 25766 deletions

View File

@@ -1,7 +1,7 @@
module;
#include <mfem.hpp>
export module mean_field:model.structure.base;
export import :eos.base;
export import :eos.runtime;
export namespace mean_field::models::structure {
struct StructureSeed {
@@ -23,7 +23,7 @@ export namespace mean_field::models::structure {
public:
virtual ~StructureBase() = default;
[[nodiscard]] virtual const eos::EquationOfState &equationOfState() const noexcept = 0;
[[nodiscard]] virtual eos::EquationOfStateView equationOfState() const noexcept = 0;
[[nodiscard]] virtual double targetMass() const noexcept = 0;
@@ -34,4 +34,4 @@ export namespace mean_field::models::structure {
protected:
StructureBase() = default;
};
} // namespace mean_field::models::structure
} // namespace mean_field::models::structure