DAP1.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2 
3  DAFoam : Discrete Adjoint with OpenFOAM
4  Version : v3
5 
6 \*---------------------------------------------------------------------------*/
7 
8 #include "DAP1.H"
9 
10 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
11 
12 namespace Foam
13 {
14 
15 defineTypeNameAndDebug(DAP1, 0);
16 addToRunTimeSelectionTable(DARadiationModel, DAP1, dictionary);
17 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
18 
20  const word modelType,
21  const fvMesh& mesh,
22  const DAOption& daOption)
23  : DARadiationModel(modelType, mesh, daOption)
24 {
25 }
26 
28 void DAP1::addModelResidualCon(HashTable<List<List<word>>>& allCon) const
29 {
30 }
31 
32 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
33 
34 } // End namespace Foam
35 
36 // ************************************************************************* //
Foam::DAOption
Definition: DAOption.H:29
Foam::DAP1::DAP1
DAP1(const word modelType, const fvMesh &mesh, const DAOption &daOption)
Definition: DAP1.C:19
daOption
DAOption daOption(mesh, pyOptions_)
Foam::DAP1::addModelResidualCon
virtual void addModelResidualCon(HashTable< List< List< word >>> &allCon) const
add the model residual connectivity to stateCon
Definition: DAP1.C:28
mesh
fvMesh & mesh
Definition: createRefsHeatTransfer.H:4
DAP1.H
Foam
Definition: multiFreqScalarFvPatchField.C:144
Foam::defineTypeNameAndDebug
defineTypeNameAndDebug(DAFvSource, 0)
Foam::addToRunTimeSelectionTable
addToRunTimeSelectionTable(DAFvSource, DAFvSourceActuatorDisk, dictionary)
Foam::DARadiationModel
Definition: DARadiationModel.H:27