feat(fem-and-beam-kernel): step 0 — quadrature-and-shape-functions
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#include <span>
|
||||
|
||||
namespace fesa {
|
||||
|
||||
struct GaussPoint1D final {
|
||||
double xi;
|
||||
double weight;
|
||||
};
|
||||
|
||||
[[nodiscard]] std::span<const GaussPoint1D> gauss_rule_1d(int order);
|
||||
|
||||
} // namespace fesa
|
||||
Reference in New Issue
Block a user