Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 namespace Foam
00033 {
00034
00035
00036
00037 inline complexVector operator*(const complex& v1, const complexVector& v2)
00038 {
00039 return complexVector
00040 (
00041 v1*v2.x(),
00042 v1*v2.y(),
00043 v1*v2.z()
00044 );
00045 }
00046
00047
00048 inline complexVector operator*(const complexVector& v2, const complex& v1)
00049 {
00050 return complexVector
00051 (
00052 v1*v2.x(),
00053 v1*v2.y(),
00054 v1*v2.z()
00055 );
00056 }
00057
00058
00059 inline complexVector operator/(const complexVector& v1, const complex& v2)
00060 {
00061 return complexVector
00062 (
00063 v1.x()/v2,
00064 v1.y()/v2,
00065 v1.z()/v2
00066 );
00067 }
00068
00069
00070 inline complexVector operator/(const complex& v1, const complexVector& v2)
00071 {
00072 return complexVector
00073 (
00074 v1/v2.x(),
00075 v1/v2.y(),
00076 v1/v2.z()
00077 );
00078 }
00079
00080
00081
00082
00083 inline complex operator&(const complexVector& v1, const complexVector& v2)
00084 {
00085 return complex
00086 (
00087 v1.x()*v2.x().conjugate()
00088 + v1.y()*v2.y().conjugate()
00089 + v1.z()*v2.z().conjugate()
00090 );
00091 }
00092
00093
00094
00095
00096 inline complexVector operator^(const complexVector& v1, const complexVector& v2)
00097 {
00098 return complexVector
00099 (
00100 (v1.y()*v2.z() - v1.z()*v2.y()),
00101 (v1.z()*v2.x() - v1.x()*v2.z()),
00102 (v1.x()*v2.y() - v1.y()*v2.x())
00103 );
00104 }
00105
00106
00107
00108
00109 inline complexVector operator^(const vector& v1, const complexVector& v2)
00110 {
00111 return complexVector
00112 (
00113 (v1.y()*v2.z() - v1.z()*v2.y()),
00114 (v1.z()*v2.x() - v1.x()*v2.z()),
00115 (v1.x()*v2.y() - v1.y()*v2.x())
00116 );
00117 }
00118
00119
00120
00121
00122 }
00123
00124