THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
A new Flyspray task has been opened. Details are below.
User who did this - Bernd Flemisch (bernd)
Attached to Project - DuMuX
Summary - Stokes: replace unnecessary loops over FieldVector entries
Task Type - Feature Request
Category - General
Status - New
Assigned To -
Operating System - Unspecified
Severity - Low
Priority - Normal
Reported Version - SVN
Due in Version - 2.8
Due Date - Undecided
Details - Within Stokes, there are several loops like
for (int dimIdx = 0; dimIdx<dim; ++dimIdx)
{
tmp = face().grad[idx];
tmp *= elemVolVars[idx].velocity()[dimIdx];
velocityGrad_[dimIdx] += tmp;
}
which can be replaced by FieldVector functionality
auto tmp = face().grad[idx];
tmp *= elemVolVars[idx].velocity();
velocityGrad_ += tmp;
More information can be found at the following URL:
http://www.dumux.org/flyspray/index.php?do=details&task_id=271
You are receiving this message because you have requested it from the Flyspray
bugtracking system. If you did not expect this message or don't want to
receive mails in future, you can change your notification settings at the URL
shown above.
_______________________________________________
Dumux mailing list
[email protected]
https://listserv.uni-stuttgart.de/mailman/listinfo/dumux