====== Differences ====== This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
docs:classes:flowfield [2009/02/17 08:30] gibson |
docs:classes:flowfield [2010/02/02 07:55] (current) |
||
---|---|---|---|
Line 36: | Line 36: | ||
FlowField omega = curl(u); | FlowField omega = curl(u); | ||
</code> | </code> | ||
- | |||
===== Algebraic and differential operators ===== | ===== Algebraic and differential operators ===== | ||
Line 42: | Line 41: | ||
possible operations | possible operations | ||
- | <code> | ||
<code> | <code> | ||
f *= 2.7; // f = 2.7*f | f *= 2.7; // f = 2.7*f | ||
Line 95: | Line 93: | ||
of construction, copying, assignment of FlowFields by reusing temporaries and | of construction, copying, assignment of FlowFields by reusing temporaries and | ||
figuring out the minimal sequence of operations to get the desired result. | figuring out the minimal sequence of operations to get the desired result. | ||
- | |||
===== Symmetry operations ===== | ===== Symmetry operations ===== | ||
- | The symmetry group of FlowFields is represented by the [[:docs:classes:symmetry|FieldSymmetry]] | + | The symmetry group of FlowFields is represented by the [[fieldsymmetry|FieldSymmetry]] |
class. Briefly, the symmetries of 3D FlowFields can be parameterized as | class. Briefly, the symmetries of 3D FlowFields can be parameterized as | ||
Line 130: | Line 127: | ||
For more examples of FlowField and FieldSymmetry usages, see | For more examples of FlowField and FieldSymmetry usages, see | ||
- | [[:docs:classes:symmetry|the FieldSymmetry documentation]]. | + | [[:docs:classes:fieldsymmetry|the FieldSymmetry documentation]]. |
===== Transforms and data access ===== | ===== Transforms and data access ===== | ||
Line 244: | Line 240: | ||
.... | .... | ||
- | 2 fieldstate ystate = u.ystate(); | + | fieldstate ystate = u.ystate(); |
if (ystate == Spectral) | if (ystate == Spectral) | ||
.... | .... | ||
Line 251: | Line 247: | ||
The FlowField class has quite a few other member functions and operators. | The FlowField class has quite a few other member functions and operators. | ||
For a complete description, see the header file {{:librarycode:flowfield.h}}. | For a complete description, see the header file {{:librarycode:flowfield.h}}. | ||
- | |||
- | |||
- |