FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

transformFieldField.H

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------------*\
00002   =========                 |
00003   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
00004    \\    /   O peration     |
00005     \\  /    A nd           | Copyright (C) 1991-2010 OpenCFD Ltd.
00006      \\/     M anipulation  |
00007 -------------------------------------------------------------------------------
00008 License
00009     This file is part of OpenFOAM.
00010 
00011     OpenFOAM is free software: you can redistribute it and/or modify it
00012     under the terms of the GNU General Public License as published by
00013     the Free Software Foundation, either version 3 of the License, or
00014     (at your option) any later version.
00015 
00016     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
00017     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
00019     for more details.
00020 
00021     You should have received a copy of the GNU General Public License
00022     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
00023 
00024 InNamespace
00025     Foam
00026 
00027 Description
00028     transformFieldField
00029     Spatial transformation functions for FieldField.
00030 
00031 SourceFiles
00032     transformFieldField.C
00033 
00034 \*---------------------------------------------------------------------------*/
00035 
00036 #ifndef transformFieldField_H
00037 #define transformFieldField_H
00038 
00039 #include <OpenFOAM/transform.H>
00040 #include <OpenFOAM/tensorFieldField.H>
00041 
00042 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00043 
00044 namespace Foam
00045 {
00046 
00047 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00048 
00049 template<template<class> class Field, class Type>
00050 void transform
00051 (
00052     FieldField<Field, Type>&,
00053     const FieldField<Field, tensor>&,
00054     const FieldField<Field, Type>&
00055 );
00056 
00057 template<template<class> class Field, class Type>
00058 tmp<FieldField<Field, Type> > transform
00059 (
00060     const FieldField<Field, tensor>&,
00061     const FieldField<Field, Type>&
00062 );
00063 
00064 template<template<class> class Field, class Type>
00065 tmp<FieldField<Field, Type> > transform
00066 (
00067     const FieldField<Field, tensor>&,
00068     const tmp<FieldField<Field, Type> >&
00069 );
00070 
00071 template<template<class> class Field, class Type>
00072 tmp<FieldField<Field, Type> > transform
00073 (
00074     const tmp<FieldField<Field, tensor> >&,
00075     const FieldField<Field, Type>&
00076 );
00077 
00078 template<template<class> class Field, class Type>
00079 tmp<FieldField<Field, Type> > transform
00080 (
00081     const tmp<FieldField<Field, tensor> >&,
00082     const tmp<FieldField<Field, Type> >&
00083 );
00084 
00085 
00086 template<template<class> class Field, class Type>
00087 void transform
00088 (
00089     FieldField<Field, Type>&,
00090     const tensor&,
00091     const FieldField<Field, Type>&
00092 );
00093 
00094 template<template<class> class Field, class Type>
00095 tmp<FieldField<Field, Type> > transform
00096 (
00097     const tensor&,
00098     const FieldField<Field, Type>&
00099 );
00100 
00101 template<template<class> class Field, class Type>
00102 tmp<FieldField<Field, Type> > transform
00103 (
00104     const tensor&,
00105     const tmp<FieldField<Field, Type> >&
00106 );
00107 
00108 
00109 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00110 
00111 } // End namespace Foam
00112 
00113 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00114 
00115 #ifdef NoRepository
00116 #   include <OpenFOAM/transformFieldField.C>
00117 #endif
00118 
00119 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00120 
00121 #endif
00122 
00123 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines