Hi J,
<br />
\frac{\partial \mathbf{f}}{\partial \mathbf{v}}<br />
is a second order tensor: it is the gradient of the vector field f, which in cartesian coordinates would be represented by the Jacobian matrix of the function f as a vector valued function of the vairables vi ,
f=(f1(v1,v2,...,vn),f2(v1,v2,...,vn),...,fn(v1,v2,...,vn))
(though please note that
<br />
\frac{\partial \mathbf{f}}{\partial \mathbf{v}}<br />
is a tensor, not a matrix). I prefer to write it as:
<br />
\nabla \mathbf{f}<br />
as this way it's coordinate independent.
The dot product is seen as a contraction, so that
<br />
\nabla \mathbf{f} \cdot\mathbf{u}<br />
yields a vector (or first order tensor), which is basically the directional derivative of the field f in the direction of u (or proportional to it if u has modulus different to 1).
I don't like the notation
<br />
D\mathbf{f}(\mathbf{v})[\mathbf{u}]<br />
because this suggests that
<br />
D\mathbf{f}(\mathbf{v})<br />
and
<br />
[\mathbf{u}]<br />
are matrices rather than tensors (a square matrix and a column matrix respectively), and all you have to do is the matrix multiplication. Oh well as long as you don't forget that the matrices just represent the components of the tensors in a certain basis :p
My favourite way of writing
<br />
\nabla \mathbf{f}<br />
though, is using indicial notation, because it leaves no room for ambiguity. Thus,
<br />
\nabla \mathbf{f}<br />
is written as:
<br />
\mathbf{e_i}\frac{\partial\mathbf{f}}{\partial v_i} = \mathbf{e_i}\frac{\partial f^j \mathbf{e_j}}{\partial v^i}<br />
so that
<br />
\nabla \mathbf{f} \cdot\mathbf{u} = \mathbf{e_i}\frac{\partial\mathbf{f}}{\partial v_i} \cdot\mathbf{u}<br />
= \mathbf{e_i}\frac{\partial f^j \mathbf{e_j}}{\partial v^i} \cdot u^k \mathbf{e_k}<br />
In a Cartesian coordinate system this would equal:
<br />
\nabla \mathbf{f} \cdot\mathbf{u} = <br />
= \mathbf{e_i}\frac{\partial f_j \mathbf{e_j}}{\partial v^i} \cdot u_k \mathbf{e_k} = \mathbf{e_i}\frac{\partial f_j }{\partial v_i} \mathbf{e_j} \cdot u_k \mathbf{e_k} = <br />
\mathbf{e_i}\frac{\partial f_j }{\partial v_i} u_k (\mathbf{e_j} \cdot \mathbf{e_k}) = <br />
\mathbf{e_i}\frac{\partial f_j }{\partial v_i} u_k \delta_j_k =<br />
\mathbf{e_i}\frac{\partial f_j }{\partial v_i} u_j<br />
Hope this helps! :)