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

print the material parameters to std::cout, to have them in log files

[[Imported from SVN: r8303]]
parent 5562b3db
No related branches found
No related tags found
No related merge requests found
...@@ -232,6 +232,9 @@ int main (int argc, char *argv[]) try ...@@ -232,6 +232,9 @@ int main (int argc, char *argv[]) try
const ParameterTree& materialParameters = parameterSet.sub("materialParameters"); const ParameterTree& materialParameters = parameterSet.sub("materialParameters");
NeumannFunction neumannFunction(homotopyParameter); NeumannFunction neumannFunction(homotopyParameter);
std::cout << "Material parameters:" << std::endl;
materialParameters.report();
CosseratEnergyLocalStiffness<GridType::LeafGridView, CosseratEnergyLocalStiffness<GridType::LeafGridView,
typename P1Basis::LocalFiniteElement, typename P1Basis::LocalFiniteElement,
3> cosseratEnergyLocalStiffness(materialParameters, 3> cosseratEnergyLocalStiffness(materialParameters,
......
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