waves
Basic FE playground
heat.h
Go to the documentation of this file.
1 /*
2  * Copyright 2022 University of Liège
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 // global header of the "heat" module
18 
19 #ifndef HEAT_H
20 #define HEAT_H
21 
22 #if defined(WIN32)
23 #ifdef heat_EXPORTS
24 #define HEAT_API __declspec(dllexport)
25 #else
26 #define HEAT_API __declspec(dllimport)
27 #endif
28 #else
29 #define HEAT_API
30 #endif
31 
32 #include "tbox.h"
33 
38 namespace heat
39 {
40 class Problem;
41 class Medium;
42 class Dirichlet;
43 class Solver;
44 class Periodic;
45 class Boundary;
46 class Source;
47 class Extractor;
48 
49 class NodePair;
50 
51 class HeatTerm;
52 
53 // not used yet
54 class DisplayHook;
55 }; // namespace heat
56 
57 #endif //HEAT_H
heat::Solver
heat solver
Definition: wSolver.h:39
heat::Dirichlet
manage Dirichlet BC
Definition: wDirichlet.h:36
heat
this namespace avoids conflicts with similar names in 'waves'
Definition: heat.h:38
heat::Problem
a class containing the problem parameters
Definition: wProblem.h:35
heat::Periodic
manages periodic BCs
Definition: wPeriodic.h:48
heat::DisplayHook
quad element
Definition: wDisplayHook.h:31
heat::Medium
a thermal medium (with k, rhoc)
Definition: wMedium.h:33
heat::HeatTerm
Formulation of heat terms.
Definition: wHeatTerm.h:31
heat::NodePair
Definition: wPeriodic.h:34
heat::Source
manage (volumic) heat sources
Definition: wSource.h:35
heat::Extractor
an object able to extract scalar results from the model
Definition: wExtractor.h:32
heat::Boundary
boundaries which requires a special treatment (such as prescribed fluxes)
Definition: wBoundary.h:33