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

actuationDiskSourceTemplates.C

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) 2010-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 the
00013     Free Software Foundation; either version 3 of the License, or (at your
00014     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, write to the Free Software Foundation,
00023     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
00024 
00025 \*----------------------------------------------------------------------------*/
00026 
00027 #include "actuationDiskSource.H"
00028 #include <finiteVolume/volFields.H>
00029 #include <finiteVolume/fvMatrix.H>
00030 #include <finiteVolume/fvm.H>
00031 
00032 // * * * * * * * * * * * * * * *  Member Functions * * * * * * * * * * * * * //
00033 
00034 template<class RhoFieldType>
00035 void Foam::actuationDiskSource::addActuationDiskAxialInertialResistance
00036 (
00037     vectorField& Usource,
00038     const labelList& cells,
00039     const scalarField& V,
00040     const RhoFieldType& rho,
00041     const vectorField& U
00042 ) const
00043 {
00044     scalar a = 1.0 - Cp_/Ct_;
00045     scalar totVol = 0.0;
00046     scalarField T(cells.size());
00047     vector uniDiskDir = diskDir_/mag(diskDir_);
00048     tensor E(tensor::zero);
00049     E.xx() = uniDiskDir.x();
00050     E.yy() = uniDiskDir.y();
00051     E.zz() = uniDiskDir.z();
00052     vectorField U1 = (1.0 - a)*U;
00053     forAll(cells, i)
00054     {
00055         totVol += V[cells[i]];
00056         T[i] = 2.0*rho[cells[i]]*diskArea_*mag(U1[cells[i]])*a/(1.0 - a);
00057     }
00058     forAll(cells, i)
00059     {
00060         Usource[cells[i]] += ((V[cells[i]]/totVol)*T[i]*E) & U1[cells[i]];
00061     }
00062 }
00063 
00064 
00065 // ************************************************************************* //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines