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:
// /////////////////////////////////
/** \brief Material constants */
double K_[3];
double A_[3];
Dune::array<double,3> K_;
Dune::array<double,3> A_;
//! Default Constructor
RodLocalStiffness ()
......@@ -159,8 +159,8 @@ public:
const GridType* grid_;
/** \brief Material constants */
double K_[3];
double A_[3];
Dune::array<double,3> K_;
Dune::array<double,3> A_;
/** \brief The stress-free configuration */
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