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

copy code from the wrinkling example into an out-commented code block

[[Imported from SVN: r8636]]
parent 79152423
No related branches found
No related tags found
No related merge requests found
......@@ -43,13 +43,14 @@ const int blocksize = TargetSpace::TangentVector::dimension;
using namespace Dune;
#if 0
void dirichletValues(const FieldVector<double,dim>& in, FieldVector<double,3>& out)
void dirichletValues(const FieldVector<double,dim>& in, FieldVector<double,3>& out,
double homotopy)
{
out = 0;
for (int i=0; i<dim; i++)
out[i] = in[i];
out[0] = 2.2;
out[1] += homotopy;
}
#endif
void dirichletValues(const FieldVector<double,dim>& in, FieldVector<double,3>& out,
......
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