Skip to content

Commit

Permalink
fix cook
Browse files Browse the repository at this point in the history
  • Loading branch information
rath3t committed Jun 17, 2024
1 parent b1f1f83 commit bbc48bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/iks008_cooksMembrane.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,12 @@ int main(int argc, char** argv) {
req.insertGlobalSolution(D_Glob)
.insertParameter( lambdaLoad);

sparseAssembler->bind(req, Ikarus::AffordanceCollections::elastoStatics,Ikarus::EnforcingDBCOption::Full);

sparseAssembler->bind(req);
sparseAssembler->bind(Ikarus::EnforcingDBCOption::Full);


auto startAssembly = std::chrono::high_resolution_clock::now();
auto nonLinOp = Ikarus::NonLinearOperatorFactory::op(sparseAssembler);
auto nonLinOp = Ikarus::NonLinearOperatorFactory::op(sparseAssembler,{Ikarus::VectorAffordance::forces,Ikarus::MatrixAffordance::stiffness});
auto stopAssembly = std::chrono::high_resolution_clock::now();
auto durationAssembly = duration_cast<std::chrono::milliseconds>(stopAssembly - startAssembly);
spdlog::info("The assembly took {:>6d} milliseconds with {} EAS parameters and {:>7d} dofs",
Expand Down

0 comments on commit bbc48bc

Please sign in to comment.