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 #ifndef MapGeometricFields_H
00035 #define MapGeometricFields_H
00036
00037 #include <OpenFOAM/polyMesh.H>
00038
00039
00040
00041 namespace Foam
00042 {
00043
00044 template<class Type, class MeshMapper, class GeoMesh>
00045 class MapInternalField
00046 {
00047 public:
00048
00049 MapInternalField()
00050 {}
00051
00052 void operator()
00053 (
00054 Field<Type>& field,
00055 const MeshMapper& mapper
00056 ) const;
00057 };
00058
00059
00060
00061
00062
00063 template
00064 <
00065 class Type,
00066 template<class> class PatchField,
00067 class MeshMapper,
00068 class GeoMesh
00069 >
00070 void MapGeometricFields
00071 (
00072 const MeshMapper& mapper
00073 )
00074 {
00075 HashTable<const GeometricField<Type, PatchField, GeoMesh>*> fields
00076 (
00077 mapper.thisDb().objectRegistry::lookupClass
00078 <GeometricField<Type, PatchField, GeoMesh> >()
00079 );
00080
00081
00082
00083
00084
00085
00086 for
00087 (
00088 typename HashTable<const GeometricField<Type, PatchField, GeoMesh>*>::
00089 iterator fieldIter = fields.begin();
00090 fieldIter != fields.end();
00091 ++fieldIter
00092 )
00093 {
00094 GeometricField<Type, PatchField, GeoMesh>& field =
00095 const_cast<GeometricField<Type, PatchField, GeoMesh>&>
00096 (*fieldIter());
00097
00098
00099
00100 if (&field.mesh() == &mapper.mesh())
00101 {
00102 field.storeOldTimes();
00103 }
00104 }
00105
00106 for
00107 (
00108 typename HashTable<const GeometricField<Type, PatchField, GeoMesh>*>::
00109 iterator fieldIter = fields.begin();
00110 fieldIter != fields.end();
00111 ++fieldIter
00112 )
00113 {
00114 GeometricField<Type, PatchField, GeoMesh>& field =
00115 const_cast<GeometricField<Type, PatchField, GeoMesh>&>
00116 (*fieldIter());
00117
00118 if (&field.mesh() == &mapper.mesh())
00119 {
00120 if (polyMesh::debug)
00121 {
00122 Info<< "Mapping " << field.typeName << ' ' << field.name()
00123 << endl;
00124 }
00125
00126
00127 MapInternalField<Type, MeshMapper, GeoMesh>()
00128 (
00129 field.internalField(),
00130 mapper
00131 );
00132
00133
00134 forAll(field.boundaryField(), patchi)
00135 {
00136
00137
00138
00139
00140
00141 field.boundaryField()[patchi].autoMap
00142 (
00143 mapper.boundaryMap()[patchi]
00144 );
00145 }
00146
00147 field.instance() = field.time().timeName();
00148 }
00149 else if (polyMesh::debug)
00150 {
00151 Info<< "Not mapping " << field.typeName << ' ' << field.name()
00152 << " since originating mesh differs from that of mapper."
00153 << endl;
00154 }
00155 }
00156 }
00157
00158
00159
00160
00161 }
00162
00163
00164
00165 #endif
00166
00167