00001 /*---------------------------------------------------------------------------*\ 00002 ========= | 00003 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox 00004 \\ / O peration | 00005 \\ / A nd | Copyright (C) 2008-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 \*---------------------------------------------------------------------------*/ 00025 00026 inline const Foam::volScalarField& Foam::radiation:: 00027 radiativeIntensityRay::I() const 00028 { 00029 return I_; 00030 } 00031 00032 00033 inline const Foam::volScalarField& Foam::radiation:: 00034 radiativeIntensityRay::Qr() const 00035 { 00036 return Qr_; 00037 } 00038 00039 00040 inline Foam::volScalarField& Foam::radiation::radiativeIntensityRay::Qr() 00041 { 00042 return Qr_; 00043 } 00044 00045 00046 inline const Foam::volScalarField& Foam::radiation:: 00047 radiativeIntensityRay::Qin() const 00048 { 00049 return Qin_; 00050 } 00051 00052 00053 inline Foam::volScalarField& Foam::radiation::radiativeIntensityRay::Qin() 00054 { 00055 return Qin_; 00056 } 00057 00058 00059 inline const Foam::volScalarField& Foam::radiation:: 00060 radiativeIntensityRay::Qem() const 00061 { 00062 return Qem_; 00063 } 00064 00065 00066 inline Foam::volScalarField& Foam::radiation::radiativeIntensityRay::Qem() 00067 { 00068 return Qem_; 00069 } 00070 00071 00072 inline const Foam::vector& Foam::radiation::radiativeIntensityRay::d() const 00073 { 00074 return d_; 00075 } 00076 00077 00078 inline const Foam::vector& Foam::radiation::radiativeIntensityRay::dAve() const 00079 { 00080 return dAve_; 00081 } 00082 00083 00084 inline Foam::scalar Foam::radiation::radiativeIntensityRay::nLambda() const 00085 { 00086 return nLambda_; 00087 } 00088 00089 00090 inline Foam::scalar Foam::radiation::radiativeIntensityRay::phi() const 00091 { 00092 return phi_; 00093 } 00094 00095 00096 inline Foam::scalar Foam::radiation::radiativeIntensityRay::theta() const 00097 { 00098 return theta_; 00099 } 00100 00101 00102 inline Foam::scalar Foam::radiation::radiativeIntensityRay::omega() const 00103 { 00104 return omega_; 00105 } 00106 00107 00108 inline const Foam::volScalarField& Foam::radiation:: 00109 radiativeIntensityRay::ILambda 00110 ( 00111 const label lambdaI 00112 ) const 00113 { 00114 return ILambda_[lambdaI]; 00115 } 00116 00117 00118 // ************************ vim: set sw=4 sts=4 et: ************************ //