Skip to content
Snippets Groups Projects
Commit 2558d722 authored by Oliver Sander's avatar Oliver Sander Committed by sander@PCPOOL.MI.FU-BERLIN.DE
Browse files

material parameters now in c++ array

[[Imported from SVN: r1768]]
parent d4bf29c2
No related branches found
No related tags found
No related merge requests found
...@@ -49,8 +49,8 @@ public: ...@@ -49,8 +49,8 @@ public:
// ///////////////////////////////// // /////////////////////////////////
/** \brief Material constants */ /** \brief Material constants */
double K_[3]; Dune::array<double,3> K_;
double A_[3]; Dune::array<double,3> A_;
//! Default Constructor //! Default Constructor
RodLocalStiffness () RodLocalStiffness ()
...@@ -159,8 +159,8 @@ public: ...@@ -159,8 +159,8 @@ public:
const GridType* grid_; const GridType* grid_;
/** \brief Material constants */ /** \brief Material constants */
double K_[3]; Dune::array<double,3> K_;
double A_[3]; Dune::array<double,3> A_;
/** \brief The stress-free configuration */ /** \brief The stress-free configuration */
std::vector<Configuration> referenceConfiguration_; std::vector<Configuration> referenceConfiguration_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment