Skip to content
Snippets Groups Projects
Commit 067d353d authored by Emmanuel Labourasse's avatar Emmanuel Labourasse
Browse files

Add files to CMakeLists

parent f22b8382
No related branches found
No related tags found
1 merge request!163Hyperelastic Lagrangian solver (Eucclhyd or Glace-type).
This commit is part of merge request !163. Comments created here will be created in the context of that merge request.
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
#include <scheme/FixedBoundaryConditionDescriptor.hpp> #include <scheme/FixedBoundaryConditionDescriptor.hpp>
#include <scheme/FourierBoundaryConditionDescriptor.hpp> #include <scheme/FourierBoundaryConditionDescriptor.hpp>
#include <scheme/FreeBoundaryConditionDescriptor.hpp> #include <scheme/FreeBoundaryConditionDescriptor.hpp>
#include <scheme/HyperelasticSolver.hpp>
#include <scheme/IBoundaryConditionDescriptor.hpp> #include <scheme/IBoundaryConditionDescriptor.hpp>
#include <scheme/IDiscreteFunction.hpp> #include <scheme/IDiscreteFunction.hpp>
#include <scheme/IDiscreteFunctionDescriptor.hpp> #include <scheme/IDiscreteFunctionDescriptor.hpp>
...@@ -404,6 +405,14 @@ SchemeModule::SchemeModule() ...@@ -404,6 +405,14 @@ SchemeModule::SchemeModule()
)); ));
this->_addBuiltinFunction("hyperelastic_dt", std::function(
[](const std::shared_ptr<const IDiscreteFunction>& c) -> double {
return hyperelastic_dt(c);
}
));
this this
->_addBuiltinFunction("cell_volume", ->_addBuiltinFunction("cell_volume",
std::function( std::function(
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
add_library( add_library(
PugsScheme PugsScheme
AcousticSolver.cpp AcousticSolver.cpp
HyperelasticSolver.cpp
DiscreteFunctionIntegrator.cpp DiscreteFunctionIntegrator.cpp
DiscreteFunctionInterpoler.cpp DiscreteFunctionInterpoler.cpp
DiscreteFunctionUtils.cpp DiscreteFunctionUtils.cpp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment