-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnavier_stokes_base.cpp
More file actions
124 lines (105 loc) · 3.73 KB
/
navier_stokes_base.cpp
File metadata and controls
124 lines (105 loc) · 3.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
* Copyright (c) 2012-2013: G-CSC, Goethe University Frankfurt
* Author: Christian Wehner
*
* This file is part of UG4.
*
* UG4 is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License version 3 (as published by the
* Free Software Foundation) with the following additional attribution
* requirements (according to LGPL/GPL v3 §7):
*
* (1) The following notice must be displayed in the Appropriate Legal Notices
* of covered and combined works: "Based on UG4 (www.ug4.org/license)".
*
* (2) The following notice must be displayed at a prominent place in the
* terminal output of covered works: "Based on UG4 (www.ug4.org/license)".
*
* (3) The following bibliography is recommended for citation and must be
* preserved in all covered files:
* "Reiter, S., Vogel, A., Heppner, I., Rupp, M., and Wittum, G. A massively
* parallel geometric multigrid solver on hierarchically distributed grids.
* Computing and visualization in science 16, 4 (2013), 151-164"
* "Vogel, A., Reiter, S., Rupp, M., Nägel, A., and Wittum, G. UG4 -- a novel
* flexible software system for simulating pde based models on high performance
* computers. Computing and visualization in science 16, 4 (2013), 165-179"
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*/
// other ug4 modules
#include "common/common.h"
#include "lib_grid/lg_base.h"
#include "lib_disc/spatial_disc/user_data/const_user_data.h"
#ifdef UG_FOR_LUA
#include "bindings/lua/lua_user_data.h"
#endif
#include "navier_stokes_base.h"
#include <vector>
#include <string>
namespace ug{
namespace NavierStokes{
////////////////////////////////////////////////////////////////////////////////
// Constructor - set default values
////////////////////////////////////////////////////////////////////////////////
template<typename TDomain>
NavierStokesBase<TDomain>::NavierStokesBase(const char* functions,
const char* subsets)
: IElemDisc<TDomain>(functions, subsets),
m_bFullNewtonFactor(0)
{
};
template<typename TDomain>
NavierStokesBase<TDomain>::NavierStokesBase(const std::vector<std::string>& vFct,
const std::vector<std::string>& vSubset)
: IElemDisc<TDomain>(vFct, vSubset),
m_bFullNewtonFactor(0)
{
};
/////////// kinematic Viscosity
template<typename TDomain>
void NavierStokesBase<TDomain>::
set_kinematic_viscosity(number val)
{
set_kinematic_viscosity(make_sp(new ConstUserNumber<dim>(val)));
}
#ifdef UG_FOR_LUA
template<typename TDomain>
void NavierStokesBase<TDomain>::
set_kinematic_viscosity(const char* fctName)
{
set_kinematic_viscosity(LuaUserDataFactory<number, dim>::create(fctName));
}
#endif
/////////// Source
template<typename TDomain>
void NavierStokesBase<TDomain>::
set_source(const std::vector<number>& vSource)
{
SmartPtr<ConstUserVector<dim> > f(new ConstUserVector<dim>(vSource));
set_source(f);
}
#ifdef UG_FOR_LUA
template<typename TDomain>
void NavierStokesBase<TDomain>::
set_source(const char* fctName)
{
set_source(LuaUserDataFactory<MathVector<dim>, dim>::create(fctName));
}
#endif
////////////////////////////////////////////////////////////////////////////////
// explicit template instantiations
////////////////////////////////////////////////////////////////////////////////
#ifdef UG_DIM_1
template class NavierStokesBase<Domain1d>;
#endif
#ifdef UG_DIM_2
template class NavierStokesBase<Domain2d>;
#endif
#ifdef UG_DIM_3
template class NavierStokesBase<Domain3d>;
#endif
} // namespace NavierStokes
} // end namespace ug