Skip to content
Snippets Groups Projects
Commit 0004a0ef authored by Timo Koch's avatar Timo Koch
Browse files

[test] Make transformation more natural: first rotate then scale and translate

parent 73bd3723
2 merge requests!2179[test] Make transformation more natural: first rotate then scale and translate,!2134WIP Feature/timestepper test
...@@ -49,7 +49,6 @@ auto make1DTransformation(const ctype scale, ...@@ -49,7 +49,6 @@ auto make1DTransformation(const ctype scale,
return [=](Dune::FieldVector<ctype, 1> p){ return [=](Dune::FieldVector<ctype, 1> p){
p *= scale; p *= scale;
p.axpy(scale, translate); p.axpy(scale, translate);
auto tp = p;
return p; return p;
}; };
} }
...@@ -76,12 +75,11 @@ auto make2DTransformation(const ctype scale, ...@@ -76,12 +75,11 @@ auto make2DTransformation(const ctype scale,
const ctype sinAngle = sin(rotationAngle); const ctype sinAngle = sin(rotationAngle);
const ctype cosAngle = cos(rotationAngle); const ctype cosAngle = cos(rotationAngle);
return [=](Dune::FieldVector<ctype, 2> p){ return [=](Dune::FieldVector<ctype, 2> p){
p *= scale;
p.axpy(scale, translate);
auto tp = p; auto tp = p;
tp[0] = p[0]*cosAngle-p[1]*sinAngle; tp[0] = p[0]*cosAngle-p[1]*sinAngle;
tp[1] = p[0]*sinAngle+p[1]*cosAngle; tp[1] = p[0]*sinAngle+p[1]*cosAngle;
return tp; tp *= scale;
return tp.axpy(scale, translate);
}; };
} }
...@@ -109,12 +107,12 @@ auto make3DTransformation(const ctype scale, ...@@ -109,12 +107,12 @@ auto make3DTransformation(const ctype scale,
const ctype sinAngle = sin(rotationAngle); const ctype sinAngle = sin(rotationAngle);
const ctype cosAngle = cos(rotationAngle); const ctype cosAngle = cos(rotationAngle);
return [=](Dune::FieldVector<ctype, 3> p){ return [=](Dune::FieldVector<ctype, 3> p){
p *= scale;
p.axpy(scale, translate);
auto tp = p; auto tp = p;
tp *= cosAngle; tp *= cosAngle;
tp.axpy(sinAngle, Dumux::crossProduct({rotationAxis}, p)); tp.axpy(sinAngle, Dumux::crossProduct({rotationAxis}, p));
return tp.axpy((1.0-cosAngle)*(rotationAxis*p), rotationAxis); tp.axpy((1.0-cosAngle)*(rotationAxis*p), rotationAxis);
tp *= scale;
return tp.axpy(scale, translate);
}; };
} }
......
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