Sets the x components of the vector field. The 'u' property is an array that may be specified as a tuple, list, numpy array, or pandas Series Returns ------- numpy.ndarray
(self)
| 985 | |
| 986 | @property |
| 987 | def u(self): |
| 988 | """ |
| 989 | Sets the x components of the vector field. |
| 990 | |
| 991 | The 'u' property is an array that may be specified as a tuple, |
| 992 | list, numpy array, or pandas Series |
| 993 | |
| 994 | Returns |
| 995 | ------- |
| 996 | numpy.ndarray |
| 997 | """ |
| 998 | return self["u"] |
| 999 | |
| 1000 | @u.setter |
| 1001 | def u(self, val): |