feat(cpp-object-oriented-modular-refactoring): step 5 - solver-workflow-google-style

This commit is contained in:
KOKO\Mimi
2026-08-16 06:20:08 +09:00
parent e1c0e357dd
commit 24f006fe4a
52 changed files with 5817 additions and 6369 deletions
@@ -1,8 +1,4 @@
#include "fesa/analysis/linear_static_analysis.hpp"
#include "fesa/assembly/parallel_for.hpp"
#include "fesa/results/results_writer.hpp"
#include "fesa/solvers/linear/mkl_pardiso_solver.h"
#include "fesa/analysis/linear_static_analysis.h"
#include <gtest/gtest.h>
@@ -18,49 +14,52 @@
#include <utility>
#include <vector>
#include "fesa/assembly/parallel_for.h"
#include "fesa/results/results_writer.h"
#include "fesa/solvers/linear/mkl_pardiso_solver.h"
namespace {
class TempDirectory {
public:
explicit TempDirectory(const std::string& label) {
static std::atomic<unsigned long long> sequence{0U};
const auto tick = std::chrono::steady_clock::now()
.time_since_epoch()
.count();
path_ = std::filesystem::temp_directory_path() /
("fesa-step24-analysis-" + label + "-" +
std::to_string(tick) + "-" +
std::to_string(sequence.fetch_add(1U)));
std::error_code error;
if (!std::filesystem::create_directory(path_, error) || error) {
throw std::runtime_error{"Unable to create the Step 24 analysis fixture."};
}
public:
explicit TempDirectory(const std::string& label) {
static std::atomic<unsigned long long> sequence{0U};
const auto tick =
std::chrono::steady_clock::now().time_since_epoch().count();
path_ = std::filesystem::temp_directory_path() /
("fesa-step24-analysis-" + label + "-" + std::to_string(tick) +
"-" + std::to_string(sequence.fetch_add(1U)));
std::error_code error;
if (!std::filesystem::create_directory(path_, error) || error) {
throw std::runtime_error{
"Unable to create the Step 24 analysis fixture."};
}
}
TempDirectory(const TempDirectory&) = delete;
TempDirectory& operator=(const TempDirectory&) = delete;
TempDirectory(const TempDirectory&) = delete;
TempDirectory& operator=(const TempDirectory&) = delete;
~TempDirectory() {
std::error_code ignored;
std::filesystem::remove_all(path_, ignored);
}
~TempDirectory() {
std::error_code ignored;
std::filesystem::remove_all(path_, ignored);
}
const std::filesystem::path& path() const noexcept { return path_; }
const std::filesystem::path& Path() const noexcept { return path_; }
private:
std::filesystem::path path_;
private:
std::filesystem::path path_;
};
void writeText(const std::filesystem::path& path, const std::string& text) {
std::ofstream stream{path, std::ios::binary | std::ios::trunc};
stream.write(text.data(), static_cast<std::streamsize>(text.size()));
if (!stream) {
throw std::runtime_error{"Unable to write the Step 24 analysis input."};
}
void WriteText(const std::filesystem::path& path, const std::string& text) {
std::ofstream stream{path, std::ios::binary | std::ios::trunc};
stream.write(text.data(), static_cast<std::streamsize>(text.size()));
if (!stream) {
throw std::runtime_error{"Unable to write the Step 24 analysis input."};
}
}
std::string axialDeck(const double rootUx, const double tipForce) {
return R"inp(*Part, name=BeamPart
std::string AxialDeck(const double root_ux, const double tip_force) {
return R"inp(*Part, name=BeamPart
*Node
1, 0., 0., 0.
2, 2., 0., 0.
@@ -84,22 +83,23 @@ std::string axialDeck(const double rootUx, const double tipForce) {
*Elastic
100., 0.25
*Boundary
Root, 1, 1, )inp" + std::to_string(rootUx) + R"inp(
Root, 1, 1, )inp" +
std::to_string(root_ux) + R"inp(
Root, 2, 6
Tip, 2, 6
*Step, name=Load, nlgeom=NO
*Static
0.1, 1., 0.01, 1.
*Cload
Tip, 1, )inp" + std::to_string(tipForce) + R"inp(
Tip, 1, )inp" +
std::to_string(tip_force) + R"inp(
*End Step
)inp";
}
std::string shellDeck(
const std::string& boundaryBlock,
const std::string& loadBlock = {}) {
return std::string{R"inp(*Part, name=ShellPart
std::string ShellDeck(const std::string& boundary_block,
const std::string& load_block = {}) {
return std::string{R"inp(*Part, name=ShellPart
*Node
1, 0., 0., 0.
2, 1., 0., 0.
@@ -129,19 +129,21 @@ std::string shellDeck(
*Material, name=Steel
*Elastic
1000., 0.25
)inp"} + boundaryBlock + R"inp(*Step, name=Load, nlgeom=NO
)inp"} + boundary_block +
R"inp(*Step, name=Load, nlgeom=NO
*Static
0.1, 1., 0.01, 1.
)inp" + loadBlock + R"inp(*End Step
)inp" + load_block +
R"inp(*End Step
)inp";
}
std::string allConstrainedShellDeck() {
return shellDeck("*Boundary\nAll, 1, 6\n");
std::string AllConstrainedShellDeck() {
return ShellDeck("*Boundary\nAll, 1, 6\n");
}
std::string prescribedShellDeck() {
return shellDeck(R"inp(*Boundary
std::string PrescribedShellDeck() {
return ShellDeck(R"inp(*Boundary
N1, 1, 6
N2, 1, 1, 0.1
N2, 2, 6
@@ -150,383 +152,373 @@ N4, 1, 6
)inp");
}
// The pure Template Method spy makes the eight public lifecycle hooks observable
// without coupling the ordering assertion to any solver backend.
// The pure Template Method spy makes the eight public lifecycle hooks
// observable without coupling the ordering assertion to any solver backend.
class SpyAnalysis final : public fesa::Analysis {
public:
const std::vector<std::string>& events() const noexcept { return events_; }
public:
const std::vector<std::string>& Events() const noexcept { return events_; }
protected:
fesa::Status initialize(const fesa::AnalysisRequest&) override {
return record("initialize");
}
fesa::Status buildAnalysisModel() override {
return record("build-analysis-model");
}
fesa::Status buildDofMapAndSparsePattern() override {
return record("build-dof-map-and-sparse-pattern");
}
fesa::Status assembleAndPartitionStiffness() override {
return record("assemble-and-partition-stiffness");
}
fesa::Status factorize() override { return record("factorize"); }
fesa::Status assembleLoadsAndEffectiveRhs() override {
return record("assemble-loads-and-effective-rhs");
}
fesa::Status substituteAndReconstruct() override {
return record("substitute-and-reconstruct");
}
fesa::Status recoverAndWriteResults() override {
return record("recover-and-write-results");
}
protected:
fesa::Status Initialize(const fesa::AnalysisRequest&) override {
return Record("initialize");
}
fesa::Status BuildAnalysisModel() override {
return Record("build-analysis-model");
}
fesa::Status BuildDofMapAndSparsePattern() override {
return Record("build-dof-map-and-sparse-pattern");
}
fesa::Status AssembleAndPartitionStiffness() override {
return Record("assemble-and-partition-stiffness");
}
fesa::Status Factorize() override { return Record("factorize"); }
fesa::Status AssembleLoadsAndEffectiveRhs() override {
return Record("assemble-loads-and-effective-rhs");
}
fesa::Status SubstituteAndReconstruct() override {
return Record("substitute-and-reconstruct");
}
fesa::Status RecoverAndWriteResults() override {
return Record("recover-and-write-results");
}
private:
fesa::Status record(const char* event) {
events_.emplace_back(event);
return fesa::Status::Ok();
}
private:
fesa::Status Record(const char* event) {
events_.emplace_back(event);
return fesa::Status::Ok();
}
std::vector<std::string> events_;
std::vector<std::string> events_;
};
// The solver spy records only the adapter-boundary operations. In particular,
// solve() cannot conceal a second factorization call.
class SpyLinearSolver final : public fesa::LinearSolver {
public:
explicit SpyLinearSolver(std::vector<std::string>& events)
: events_{events} {}
public:
explicit SpyLinearSolver(std::vector<std::string>& events)
: events_{events} {}
fesa::Status Factorize(const fesa::SparseMatrix&) override {
++factorizeCalls_;
events_.emplace_back("solver-factorize");
return fesa::Status::Ok();
fesa::Status Factorize(const fesa::SparseMatrix&) override {
++factorize_calls_;
events_.emplace_back("solver-factorize");
return fesa::Status::Ok();
}
fesa::Status Solve(const fesa::Vector& rhs,
fesa::Vector& solution) const override {
++solve_calls_;
events_.emplace_back("solver-solve");
for (std::size_t index = 0U; index < rhs.Size() && index < solution.Size();
++index) {
solution[index] = 0.0;
}
return fesa::Status::Ok();
}
fesa::Status Solve(
const fesa::Vector& rhs, fesa::Vector& solution) const override {
++solveCalls_;
events_.emplace_back("solver-solve");
for (std::size_t index = 0U;
index < rhs.Size() && index < solution.Size(); ++index) {
solution[index] = 0.0;
}
return fesa::Status::Ok();
}
int FactorizeCalls() const noexcept { return factorize_calls_; }
int SolveCalls() const noexcept { return solve_calls_; }
int factorizeCalls() const noexcept { return factorizeCalls_; }
int solveCalls() const noexcept { return solveCalls_; }
private:
std::vector<std::string>& events_;
int factorizeCalls_{0};
mutable int solveCalls_{0};
private:
std::vector<std::string>& events_;
int factorize_calls_{0};
mutable int solve_calls_{0};
};
class RecordingMklSolver final : public fesa::LinearSolver {
public:
fesa::Status Factorize(const fesa::SparseMatrix& matrix) override {
++factorizeCalls_;
factorizedDimension_ = matrix.Rows();
if (matrix.Rows() == 1U && matrix.Columns() == 1U &&
matrix.Values().size() == 1U) {
scalarStiffness_ = matrix.Values()[0U];
}
return backend_.Factorize(matrix);
public:
fesa::Status Factorize(const fesa::SparseMatrix& matrix) override {
++factorize_calls_;
factorized_dimension_ = matrix.Rows();
if (matrix.Rows() == 1U && matrix.Columns() == 1U &&
matrix.Values().size() == 1U) {
scalar_stiffness_ = matrix.Values()[0U];
}
return backend_.Factorize(matrix);
}
fesa::Status Solve(
const fesa::Vector& rhs, fesa::Vector& solution) const override {
++solveCalls_;
if (rhs.Size() == 0U) {
rhs_.clear();
} else {
rhs_.assign(rhs.Data(), rhs.Data() + rhs.Size());
}
return backend_.Solve(rhs, solution);
fesa::Status Solve(const fesa::Vector& rhs,
fesa::Vector& solution) const override {
++solve_calls_;
if (rhs.Size() == 0U) {
rhs_.clear();
} else {
rhs_.assign(rhs.Data(), rhs.Data() + rhs.Size());
}
return backend_.Solve(rhs, solution);
}
int factorizeCalls() const noexcept { return factorizeCalls_; }
int solveCalls() const noexcept { return solveCalls_; }
std::size_t factorizedDimension() const noexcept {
return factorizedDimension_;
}
double scalarStiffness() const noexcept { return scalarStiffness_; }
const std::vector<double>& rhs() const noexcept { return rhs_; }
int FactorizeCalls() const noexcept { return factorize_calls_; }
int SolveCalls() const noexcept { return solve_calls_; }
std::size_t FactorizedDimension() const noexcept {
return factorized_dimension_;
}
double ScalarStiffness() const noexcept { return scalar_stiffness_; }
const std::vector<double>& Rhs() const noexcept { return rhs_; }
private:
fesa::MklPardisoSolver backend_;
int factorizeCalls_{0};
mutable int solveCalls_{0};
std::size_t factorizedDimension_{0U};
double scalarStiffness_{0.0};
mutable std::vector<double> rhs_;
private:
fesa::MklPardisoSolver backend_;
int factorize_calls_{0};
mutable int solve_calls_{0};
std::size_t factorized_dimension_{0U};
double scalar_stiffness_{0.0};
mutable std::vector<double> rhs_;
};
class NonfiniteLinearSolver final : public fesa::LinearSolver {
public:
fesa::Status Factorize(const fesa::SparseMatrix&) override {
return fesa::Status::Ok();
}
public:
fesa::Status Factorize(const fesa::SparseMatrix&) override {
return fesa::Status::Ok();
}
fesa::Status Solve(
const fesa::Vector&, fesa::Vector& solution) const override {
for (std::size_t index = 0U; index < solution.Size(); ++index) {
solution[index] = (std::numeric_limits<double>::quiet_NaN)();
}
return fesa::Status::Ok();
fesa::Status Solve(const fesa::Vector&,
fesa::Vector& solution) const override {
for (std::size_t index = 0U; index < solution.Size(); ++index) {
solution[index] = (std::numeric_limits<double>::quiet_NaN)();
}
return fesa::Status::Ok();
}
};
class SpyResultsWriter final : public fesa::ResultsWriter {
public:
explicit SpyResultsWriter(std::vector<std::string>& events)
: events_{events} {}
public:
explicit SpyResultsWriter(std::vector<std::string>& events)
: events_{events} {}
fesa::Status write(
const std::filesystem::path&,
const fesa::Domain&,
const fesa::AnalysisState&,
const std::vector<fesa::Diagnostic>&) override {
++writeCalls_;
events_.emplace_back("writer-write");
return fesa::Status::Ok();
}
fesa::Status Write(const std::filesystem::path&, const fesa::Domain&,
const fesa::AnalysisState&,
const std::vector<fesa::Diagnostic>&) override {
++write_calls_;
events_.emplace_back("writer-write");
return fesa::Status::Ok();
}
int writeCalls() const noexcept { return writeCalls_; }
int WriteCalls() const noexcept { return write_calls_; }
private:
std::vector<std::string>& events_;
int writeCalls_{0};
private:
std::vector<std::string>& events_;
int write_calls_{0};
};
class CapturingResultsWriter final : public fesa::ResultsWriter {
public:
fesa::Status write(
const std::filesystem::path& outputPath,
const fesa::Domain& domain,
const fesa::AnalysisState& state,
const std::vector<fesa::Diagnostic>& diagnostics) override {
outputPath_ = outputPath;
nodeCount_ = domain.Nodes().size();
shellElementCount_ = domain.ShellElements().size();
state_ = std::make_unique<fesa::AnalysisState>(state);
diagnostics_ = diagnostics;
return fesa::Status::Ok();
}
public:
fesa::Status Write(
const std::filesystem::path& output_path, const fesa::Domain& domain,
const fesa::AnalysisState& state,
const std::vector<fesa::Diagnostic>& diagnostics) override {
output_path_ = output_path;
node_count_ = domain.Nodes().size();
shell_element_count_ = domain.ShellElements().size();
state_ = std::make_unique<fesa::AnalysisState>(state);
diagnostics_ = diagnostics;
return fesa::Status::Ok();
}
const fesa::AnalysisState& state() const {
if (!state_) {
throw std::logic_error{"No AnalysisState was captured."};
}
return *state_;
const fesa::AnalysisState& State() const {
if (!state_) {
throw std::logic_error{"No AnalysisState was captured."};
}
return *state_;
}
const std::filesystem::path& outputPath() const noexcept {
return outputPath_;
}
std::size_t nodeCount() const noexcept { return nodeCount_; }
std::size_t shellElementCount() const noexcept {
return shellElementCount_;
}
const std::vector<fesa::Diagnostic>& diagnostics() const noexcept {
return diagnostics_;
}
const std::filesystem::path& OutputPath() const noexcept {
return output_path_;
}
std::size_t NodeCount() const noexcept { return node_count_; }
std::size_t ShellElementCount() const noexcept {
return shell_element_count_;
}
const std::vector<fesa::Diagnostic>& Diagnostics() const noexcept {
return diagnostics_;
}
private:
std::filesystem::path outputPath_;
std::size_t nodeCount_{0U};
std::size_t shellElementCount_{0U};
std::unique_ptr<fesa::AnalysisState> state_;
std::vector<fesa::Diagnostic> diagnostics_;
private:
std::filesystem::path output_path_;
std::size_t node_count_{0U};
std::size_t shell_element_count_{0U};
std::unique_ptr<fesa::AnalysisState> state_;
std::vector<fesa::Diagnostic> diagnostics_;
};
} // namespace
} // namespace
TEST(LinearStaticCli, FactorizesBeforeLoadAndSolvesWithoutRefactorization) {
SpyAnalysis lifecycle;
const fesa::AnalysisRequest emptyRequest{};
ASSERT_TRUE(lifecycle.run(emptyRequest).IsOk());
EXPECT_EQ(
lifecycle.events(),
(std::vector<std::string>{
"initialize",
"build-analysis-model",
"build-dof-map-and-sparse-pattern",
"assemble-and-partition-stiffness",
"factorize",
"assemble-loads-and-effective-rhs",
"substitute-and-reconstruct",
"recover-and-write-results"}));
SpyAnalysis lifecycle;
const fesa::AnalysisRequest empty_request{};
ASSERT_TRUE(lifecycle.Run(empty_request).IsOk());
EXPECT_EQ(lifecycle.Events(),
(std::vector<std::string>{
"initialize", "build-analysis-model",
"build-dof-map-and-sparse-pattern",
"assemble-and-partition-stiffness", "factorize",
"assemble-loads-and-effective-rhs",
"substitute-and-reconstruct", "recover-and-write-results"}));
TempDirectory directory{"order"};
const auto input = directory.path() / "order.inp";
const auto output = directory.path() / "results.h5";
writeText(input, axialDeck(0.0, 0.0));
TempDirectory directory{"order"};
const auto input = directory.Path() / "order.inp";
const auto output = directory.Path() / "results.h5";
WriteText(input, AxialDeck(0.0, 0.0));
std::vector<std::string> adapterEvents;
fesa::SerialParallelFor serial;
SpyLinearSolver solver{adapterEvents};
SpyResultsWriter writer{adapterEvents};
fesa::LinearStaticAnalysis analysis{serial, solver, writer};
std::vector<std::string> adapter_events;
fesa::SerialParallelFor serial;
SpyLinearSolver solver{adapter_events};
SpyResultsWriter writer{adapter_events};
fesa::LinearStaticAnalysis analysis{serial, solver, writer};
ASSERT_TRUE(analysis.run({input, output}).IsOk());
EXPECT_EQ(solver.factorizeCalls(), 1);
EXPECT_EQ(solver.solveCalls(), 1);
EXPECT_EQ(writer.writeCalls(), 1);
EXPECT_EQ(
adapterEvents,
(std::vector<std::string>{
"solver-factorize", "solver-solve", "writer-write"}));
ASSERT_TRUE(analysis.Run({input, output}).IsOk());
EXPECT_EQ(solver.FactorizeCalls(), 1);
EXPECT_EQ(solver.SolveCalls(), 1);
EXPECT_EQ(writer.WriteCalls(), 1);
EXPECT_EQ(adapter_events,
(std::vector<std::string>{"solver-factorize", "solver-solve",
"writer-write"}));
}
TEST(LinearStaticCli, RealPipelineHandlesAnalyticalAndNonzeroPrescription) {
TempDirectory directory{"analytical"};
const auto input = directory.path() / "prescribed-axial.inp";
const auto output = directory.path() / "captured-results.h5";
writeText(input, axialDeck(0.1, 10.0));
TempDirectory directory{"analytical"};
const auto input = directory.Path() / "prescribed-axial.inp";
const auto output = directory.Path() / "captured-results.h5";
WriteText(input, AxialDeck(0.1, 10.0));
fesa::SerialParallelFor serial;
fesa::MklPardisoSolver solver;
CapturingResultsWriter writer;
fesa::LinearStaticAnalysis analysis{serial, solver, writer};
fesa::SerialParallelFor serial;
fesa::MklPardisoSolver solver;
CapturingResultsWriter writer;
fesa::LinearStaticAnalysis analysis{serial, solver, writer};
const auto status = analysis.run({input, output});
ASSERT_TRUE(status.IsOk());
EXPECT_EQ(writer.outputPath(), output);
EXPECT_EQ(writer.nodeCount(), 2U);
EXPECT_TRUE(writer.diagnostics().empty());
const auto status = analysis.Run({input, output});
ASSERT_TRUE(status.IsOk());
EXPECT_EQ(writer.OutputPath(), output);
EXPECT_EQ(writer.NodeCount(), 2U);
EXPECT_TRUE(writer.Diagnostics().empty());
const auto& state = writer.state();
ASSERT_EQ(state.displacement().Size(), 12U);
EXPECT_EQ(state.identity().stepName, "Step-1");
EXPECT_EQ(state.identity().frameIndex, 0U);
const auto& state = writer.State();
ASSERT_EQ(state.Displacement().Size(), 12U);
EXPECT_EQ(state.Identity().step_name, "Step-1");
EXPECT_EQ(state.Identity().frame_index, 0U);
// EA/L = 100 for this fixture, so u_tip = 0.1 + 10/100 = 0.2.
EXPECT_NEAR(state.displacement()[0U], 0.1, 1.0e-12);
EXPECT_NEAR(state.displacement()[6U], 0.2, 2.0e-10);
EXPECT_NEAR(state.externalForce()[6U], 10.0, 1.0e-12);
EXPECT_NEAR(state.internalForce()[0U], -10.0, 1.0e-9);
EXPECT_NEAR(state.internalForce()[6U], 10.0, 1.0e-9);
EXPECT_NEAR(state.reaction()[0U], -10.0, 1.0e-9);
EXPECT_NEAR(state.residual()[6U], 0.0, 1.0e-9);
EXPECT_EQ(state.endpointResults().size(), 2U);
EXPECT_EQ(state.gaussResults().size(), 2U);
EXPECT_EQ(state.stressResults().size(), 2U);
// EA/L = 100 for this fixture, so u_tip = 0.1 + 10/100 = 0.2.
EXPECT_NEAR(state.Displacement()[0U], 0.1, 1.0e-12);
EXPECT_NEAR(state.Displacement()[6U], 0.2, 2.0e-10);
EXPECT_NEAR(state.ExternalForce()[6U], 10.0, 1.0e-12);
EXPECT_NEAR(state.InternalForce()[0U], -10.0, 1.0e-9);
EXPECT_NEAR(state.InternalForce()[6U], 10.0, 1.0e-9);
EXPECT_NEAR(state.Reaction()[0U], -10.0, 1.0e-9);
EXPECT_NEAR(state.Residual()[6U], 0.0, 1.0e-9);
EXPECT_EQ(state.EndpointResults().size(), 2U);
EXPECT_EQ(state.GaussResults().size(), 2U);
EXPECT_EQ(state.StressResults().size(), 2U);
}
// MITC4-FLOW-001
TEST(Mitc4ShellCli, UsesExistingLifecycleAndExactlyOneFactorization) {
TempDirectory directory{"shell-order"};
const auto input = directory.path() / "all-constrained-shell.inp";
const auto output = directory.path() / "results.h5";
writeText(input, allConstrainedShellDeck());
TempDirectory directory{"shell-order"};
const auto input = directory.Path() / "all-constrained-shell.inp";
const auto output = directory.Path() / "results.h5";
WriteText(input, AllConstrainedShellDeck());
std::vector<std::string> adapterEvents;
fesa::SerialParallelFor serial;
SpyLinearSolver solver{adapterEvents};
SpyResultsWriter writer{adapterEvents};
fesa::LinearStaticAnalysis analysis{serial, solver, writer};
std::vector<std::string> adapter_events;
fesa::SerialParallelFor serial;
SpyLinearSolver solver{adapter_events};
SpyResultsWriter writer{adapter_events};
fesa::LinearStaticAnalysis analysis{serial, solver, writer};
ASSERT_TRUE(analysis.run({input, output}).IsOk());
EXPECT_EQ(solver.factorizeCalls(), 1);
EXPECT_EQ(solver.solveCalls(), 1);
EXPECT_EQ(writer.writeCalls(), 1);
EXPECT_EQ(
adapterEvents,
(std::vector<std::string>{
"solver-factorize", "solver-solve", "writer-write"}));
ASSERT_TRUE(analysis.Run({input, output}).IsOk());
EXPECT_EQ(solver.FactorizeCalls(), 1);
EXPECT_EQ(solver.SolveCalls(), 1);
EXPECT_EQ(writer.WriteCalls(), 1);
EXPECT_EQ(adapter_events,
(std::vector<std::string>{"solver-factorize", "solver-solve",
"writer-write"}));
}
// MITC4-FLOW-002
TEST(Mitc4ShellCli, AppliesKfcForNonzeroPrescribedDisplacement) {
TempDirectory directory{"shell-prescribed"};
const auto input = directory.path() / "prescribed-shell.inp";
const auto output = directory.path() / "captured-results.h5";
writeText(input, prescribedShellDeck());
TempDirectory directory{"shell-prescribed"};
const auto input = directory.Path() / "prescribed-shell.inp";
const auto output = directory.Path() / "captured-results.h5";
WriteText(input, PrescribedShellDeck());
fesa::SerialParallelFor serial;
RecordingMklSolver solver;
CapturingResultsWriter writer;
fesa::LinearStaticAnalysis analysis{serial, solver, writer};
fesa::SerialParallelFor serial;
RecordingMklSolver solver;
CapturingResultsWriter writer;
fesa::LinearStaticAnalysis analysis{serial, solver, writer};
const auto status = analysis.run({input, output});
for (const auto& diagnostic : status.Diagnostics()) {
EXPECT_TRUE(status.IsOk())
<< diagnostic.code << ": " << diagnostic.message;
}
ASSERT_TRUE(status.IsOk());
ASSERT_EQ(solver.factorizeCalls(), 1);
ASSERT_EQ(solver.solveCalls(), 1);
ASSERT_EQ(solver.factorizedDimension(), 1U);
ASSERT_EQ(solver.rhs().size(), 1U);
EXPECT_NEAR(solver.scalarStiffness(), 440.0 / 9.0, 1.0e-12);
// Ff is exactly zero, so this nonzero RHS is solely -Kfc*dc.
EXPECT_NEAR(solver.rhs()[0U], -4.0 / 9.0, 1.0e-12);
const auto status = analysis.Run({input, output});
for (const auto& diagnostic : status.Diagnostics()) {
EXPECT_TRUE(status.IsOk()) << diagnostic.code << ": " << diagnostic.message;
}
ASSERT_TRUE(status.IsOk());
ASSERT_EQ(solver.FactorizeCalls(), 1);
ASSERT_EQ(solver.SolveCalls(), 1);
ASSERT_EQ(solver.FactorizedDimension(), 1U);
ASSERT_EQ(solver.Rhs().size(), 1U);
EXPECT_NEAR(solver.ScalarStiffness(), 440.0 / 9.0, 1.0e-12);
// Ff is exactly zero, so this nonzero RHS is solely -Kfc*dc.
EXPECT_NEAR(solver.Rhs()[0U], -4.0 / 9.0, 1.0e-12);
EXPECT_EQ(writer.outputPath(), output);
EXPECT_EQ(writer.nodeCount(), 4U);
EXPECT_EQ(writer.shellElementCount(), 1U);
const auto& state = writer.state();
ASSERT_EQ(state.displacement().Size(), 24U);
EXPECT_NEAR(state.displacement()[6U], 0.1, 1.0e-12);
EXPECT_NEAR(state.displacement()[12U], -1.0 / 110.0, 1.0e-12);
EXPECT_NEAR(state.verificationMetrics()[0U], 0.0, 1.0e-10);
EXPECT_EQ(state.shellResults().size(), 4U);
EXPECT_GT(state.physicalStrainEnergy(), 0.0);
EXPECT_EQ(writer.OutputPath(), output);
EXPECT_EQ(writer.NodeCount(), 4U);
EXPECT_EQ(writer.ShellElementCount(), 1U);
const auto& state = writer.State();
ASSERT_EQ(state.Displacement().Size(), 24U);
EXPECT_NEAR(state.Displacement()[6U], 0.1, 1.0e-12);
EXPECT_NEAR(state.Displacement()[12U], -1.0 / 110.0, 1.0e-12);
EXPECT_NEAR(state.VerificationMetrics()[0U], 0.0, 1.0e-10);
EXPECT_EQ(state.ShellResults().size(), 4U);
EXPECT_GT(state.PhysicalStrainEnergy(), 0.0);
}
// MITC4-FLOW-003
TEST(Mitc4ShellCli, RejectsSingularAndAcceptsZeroByZeroFreeSystem) {
TempDirectory directory{"shell-singular-all"};
const auto singularInput = directory.path() / "singular-shell.inp";
const auto constrainedInput = directory.path() / "constrained-shell.inp";
writeText(singularInput, shellDeck(""));
writeText(constrainedInput, allConstrainedShellDeck());
TempDirectory directory{"shell-singular-all"};
const auto singular_input = directory.Path() / "singular-shell.inp";
const auto constrained_input = directory.Path() / "constrained-shell.inp";
WriteText(singular_input, ShellDeck(""));
WriteText(constrained_input, AllConstrainedShellDeck());
fesa::SerialParallelFor serial;
fesa::MklPardisoSolver singularSolver;
std::vector<std::string> singularEvents;
SpyResultsWriter singularWriter{singularEvents};
fesa::LinearStaticAnalysis singularAnalysis{
serial, singularSolver, singularWriter};
const auto singular = singularAnalysis.run(
{singularInput, directory.path() / "singular.h5"});
ASSERT_FALSE(singular.IsOk());
EXPECT_EQ(singular.Category(), fesa::FailureCategory::kSolver);
EXPECT_EQ(singularWriter.writeCalls(), 0);
fesa::SerialParallelFor serial;
fesa::MklPardisoSolver singular_solver;
std::vector<std::string> singular_events;
SpyResultsWriter singular_writer{singular_events};
fesa::LinearStaticAnalysis singular_analysis{serial, singular_solver,
singular_writer};
const auto singular =
singular_analysis.Run({singular_input, directory.Path() / "singular.h5"});
ASSERT_FALSE(singular.IsOk());
EXPECT_EQ(singular.Category(), fesa::FailureCategory::kSolver);
EXPECT_EQ(singular_writer.WriteCalls(), 0);
RecordingMklSolver constrainedSolver;
CapturingResultsWriter constrainedWriter;
fesa::LinearStaticAnalysis constrainedAnalysis{
serial, constrainedSolver, constrainedWriter};
const auto constrained = constrainedAnalysis.run(
{constrainedInput, directory.path() / "constrained.h5"});
ASSERT_TRUE(constrained.IsOk());
EXPECT_EQ(constrainedSolver.factorizeCalls(), 1);
EXPECT_EQ(constrainedSolver.factorizedDimension(), 0U);
EXPECT_EQ(constrainedSolver.solveCalls(), 1);
EXPECT_TRUE(constrainedSolver.rhs().empty());
EXPECT_EQ(constrainedWriter.state().shellResults().size(), 4U);
RecordingMklSolver constrained_solver;
CapturingResultsWriter constrained_writer;
fesa::LinearStaticAnalysis constrained_analysis{serial, constrained_solver,
constrained_writer};
const auto constrained = constrained_analysis.Run(
{constrained_input, directory.Path() / "constrained.h5"});
ASSERT_TRUE(constrained.IsOk());
EXPECT_EQ(constrained_solver.FactorizeCalls(), 1);
EXPECT_EQ(constrained_solver.FactorizedDimension(), 0U);
EXPECT_EQ(constrained_solver.SolveCalls(), 1);
EXPECT_TRUE(constrained_solver.Rhs().empty());
EXPECT_EQ(constrained_writer.State().ShellResults().size(), 4U);
}
// MITC4-FLOW-004
TEST(Mitc4ShellCli, DoesNotWriteAnInvalidRecoveryCandidate) {
TempDirectory directory{"shell-invalid-candidate"};
const auto input = directory.path() / "invalid-recovery-shell.inp";
writeText(input, prescribedShellDeck());
TempDirectory directory{"shell-invalid-candidate"};
const auto input = directory.Path() / "invalid-recovery-shell.inp";
WriteText(input, PrescribedShellDeck());
fesa::SerialParallelFor serial;
NonfiniteLinearSolver solver;
std::vector<std::string> adapterEvents;
SpyResultsWriter writer{adapterEvents};
fesa::LinearStaticAnalysis analysis{serial, solver, writer};
const auto status = analysis.run(
{input, directory.path() / "must-not-exist.h5"});
fesa::SerialParallelFor serial;
NonfiniteLinearSolver solver;
std::vector<std::string> adapter_events;
SpyResultsWriter writer{adapter_events};
fesa::LinearStaticAnalysis analysis{serial, solver, writer};
const auto status =
analysis.Run({input, directory.Path() / "must-not-exist.h5"});
ASSERT_FALSE(status.IsOk());
EXPECT_EQ(status.Category(), fesa::FailureCategory::kModel);
ASSERT_FALSE(status.Diagnostics().empty());
EXPECT_EQ(status.Diagnostics().front().code, "nonfinite-recovery-value");
EXPECT_EQ(writer.writeCalls(), 0);
EXPECT_TRUE(adapterEvents.empty());
ASSERT_FALSE(status.IsOk());
EXPECT_EQ(status.Category(), fesa::FailureCategory::kModel);
ASSERT_FALSE(status.Diagnostics().empty());
EXPECT_EQ(status.Diagnostics().front().code, "nonfinite-recovery-value");
EXPECT_EQ(writer.WriteCalls(), 0);
EXPECT_TRUE(adapter_events.empty());
}