From 57d84d6aa112bb18d0dfd2317e55e1370fd68e7f Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Tue, 28 Feb 2006 09:52:57 +0000 Subject: [PATCH] The local configuration of a rod in 3d [[Imported from SVN: r737]] --- src/configuration.hh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/configuration.hh diff --git a/src/configuration.hh b/src/configuration.hh new file mode 100644 index 00000000..2e8ca5dc --- /dev/null +++ b/src/configuration.hh @@ -0,0 +1,18 @@ +#ifndef CONFIGURATION_HH +#define CONFIGURATION_HH + +#include <dune/common/fvector.hh> +#include "quaternion.hh" + +/** \brief Configuration of a nonlinear rod in 3d */ +struct Configuration +{ + // Translational part + Dune::FieldVector<double,3> r; + + // Rotational part + Quaternion<double> q; + +}; + +#endif -- GitLab