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
00033
00034
00035 #ifndef processorGAMGInterfaceField_H
00036 #define processorGAMGInterfaceField_H
00037
00038 #include <OpenFOAM/GAMGInterfaceField.H>
00039 #include <OpenFOAM/processorGAMGInterface.H>
00040 #include <OpenFOAM/processorLduInterfaceField.H>
00041
00042
00043
00044 namespace Foam
00045 {
00046
00047
00048
00049
00050
00051 class processorGAMGInterfaceField
00052 :
00053 public GAMGInterfaceField,
00054 public processorLduInterfaceField
00055 {
00056
00057
00058
00059 const processorGAMGInterface& procInterface_;
00060
00061
00062 bool doTransform_;
00063
00064
00065 int rank_;
00066
00067
00068
00069
00070
00071 processorGAMGInterfaceField(const processorGAMGInterfaceField&);
00072
00073
00074 void operator=(const processorGAMGInterfaceField&);
00075
00076
00077 public:
00078
00079
00080 TypeName("processor");
00081
00082
00083
00084
00085
00086 processorGAMGInterfaceField
00087 (
00088 const GAMGInterface& GAMGCp,
00089 const lduInterfaceField& fineInterface
00090 );
00091
00092
00093
00094
00095 virtual ~processorGAMGInterfaceField();
00096
00097
00098
00099
00100
00101
00102
00103 label size() const
00104 {
00105 return procInterface_.size();
00106 }
00107
00108
00109
00110
00111
00112 virtual void initInterfaceMatrixUpdate
00113 (
00114 const scalarField& psiInternal,
00115 scalarField& result,
00116 const lduMatrix& m,
00117 const scalarField& coeffs,
00118 const direction cmpt,
00119 const Pstream::commsTypes commsType
00120 ) const;
00121
00122
00123 virtual void updateInterfaceMatrix
00124 (
00125 const scalarField& psiInternal,
00126 scalarField& result,
00127 const lduMatrix&,
00128 const scalarField& coeffs,
00129 const direction cmpt,
00130 const Pstream::commsTypes commsType
00131 ) const;
00132
00133
00134
00135
00136
00137 virtual int myProcNo() const
00138 {
00139 return procInterface_.myProcNo();
00140 }
00141
00142
00143 virtual int neighbProcNo() const
00144 {
00145 return procInterface_.neighbProcNo();
00146 }
00147
00148
00149 virtual bool doTransform() const
00150 {
00151 return doTransform_;
00152 }
00153
00154
00155 virtual const tensorField& forwardT() const
00156 {
00157 return procInterface_.forwardT();
00158 }
00159
00160
00161 virtual int rank() const
00162 {
00163 return rank_;
00164 }
00165 };
00166
00167
00168
00169
00170 }
00171
00172
00173
00174 #endif
00175
00176