waves
Basic FE playground
waves.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 waves module
18 
19 #ifndef WAVES_H
20 #define WAVES_H
21 
22 #if defined(WIN32)
23 #ifdef waves_EXPORTS
24 #define WAVES_API __declspec(dllexport)
25 #else
26 #define WAVES_API __declspec(dllimport)
27 #endif
28 #else
29 #define WAVES_API
30 #endif
31 
32 #include "tbox.h"
33 
34 namespace waves
35 {
36 class Problem;
37 class Source;
38 class Medium;
39 class Boundary;
40 
41 class DisplayHook;
42 
43 class WaveTerm;
44 
45 class TimeIntegration;
46 class ForwardEuler;
47 class RungeKutta;
48 class Newmark;
49 } // namespace waves
50 
51 #endif //WAVES_H
waves::Problem
main wave Problem object
Definition: wProblem.h:35
waves::Boundary
boundaries which requires a special treatment
Definition: wBoundary.h:32
waves::WaveTerm
Formulation of wave terms.
Definition: wWaveTerm.h:31
waves::Newmark
implicit Newmark
Definition: wNewmark.h:30
waves::RungeKutta
explicit Runge Kutta time integration
Definition: wRungeKutta.h:33
waves::Medium
a medium (with a speed of wave)
Definition: wMedium.h:33
waves::TimeIntegration
Time integration base class.
Definition: wTimeIntegration.h:43
waves
Definition: waves.h:34
waves::DisplayHook
quad element
Definition: wDisplayHook.h:31
waves::ForwardEuler
simple explicit Forward Euler time integration
Definition: wForwardEuler.h:30
waves::Source
manage the sources
Definition: wSource.h:34