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

minor bugfix concerning the initial configuration

[[Imported from SVN: r1589]]
parent 873fa08b
No related branches found
No related tags found
No related merge requests found
...@@ -119,14 +119,10 @@ int main (int argc, char *argv[]) try ...@@ -119,14 +119,10 @@ int main (int argc, char *argv[]) try
for (int i=0; i<rodX.size(); i++) { for (int i=0; i<rodX.size(); i++) {
rodX[i].r[0] = 0.5; rodX[i].r[0] = 0.5;
rodX[i].r[1] = 0.5; rodX[i].r[1] = 0.5;
rodX[i].r[2] = 5 + (i* 5 /(rodX.size()-1)); rodX[i].r[2] = 5 + (i* 5.0 /(rodX.size()-1));
rodX[i].q = Quaternion<double>::identity(); rodX[i].q = Quaternion<double>::identity();
} }
// rodX[rodX.size()-1].r[0] = 0.5;
// rodX[rodX.size()-1].r[1] = 0.5;
// rodX[rodX.size()-1].r[2] = 11;
// ///////////////////////////////////////// // /////////////////////////////////////////
// Read Dirichlet values // Read Dirichlet values
// ///////////////////////////////////////// // /////////////////////////////////////////
......
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