Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
hyteg
hyteg
Commits
7ebe6dc1
Commit
7ebe6dc1
authored
Apr 05, 2022
by
Nils Kohl
🌝
Browse files
And another msvc fix....
parent
a8e5a374
Pipeline
#38969
passed with stages
in 90 minutes and 48 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/hyteg/dgfunctionspace/DGFunction.hpp
View file @
7ebe6dc1
...
...
@@ -69,6 +69,52 @@ class DGFunction final : public Function< DGFunction< ValueType > >
WALBERLA_ABORT
(
"Not implemented."
);
}
void
interpolate
(
ValueType
constant
,
uint_t
level
,
DoFType
flag
=
All
)
const
{
WALBERLA_UNUSED
(
constant
);
WALBERLA_UNUSED
(
level
);
WALBERLA_UNUSED
(
flag
);
WALBERLA_ABORT
(
"Not implemented."
);
};
void
interpolate
(
const
std
::
function
<
ValueType
(
const
hyteg
::
Point3D
&
)
>&
expr
,
uint_t
level
,
DoFType
flag
=
All
)
const
{
WALBERLA_UNUSED
(
expr
);
WALBERLA_UNUSED
(
level
);
WALBERLA_UNUSED
(
flag
);
WALBERLA_ABORT
(
"Not implemented."
);
};
void
interpolate
(
const
std
::
vector
<
std
::
function
<
ValueType
(
const
hyteg
::
Point3D
&
)
>
>&
expressions
,
uint_t
level
,
DoFType
flag
=
All
)
const
{
WALBERLA_UNUSED
(
expressions
);
WALBERLA_UNUSED
(
level
);
WALBERLA_UNUSED
(
flag
);
WALBERLA_ABORT
(
"Not implemented."
);
};
void
add
(
const
ValueType
scalar
,
uint_t
level
,
DoFType
flag
=
All
)
const
{
WALBERLA_UNUSED
(
scalar
);
WALBERLA_UNUSED
(
level
);
WALBERLA_UNUSED
(
flag
);
WALBERLA_ABORT
(
"Not implemented."
);
};
void
add
(
const
std
::
vector
<
ValueType
>
scalars
,
const
std
::
vector
<
std
::
reference_wrapper
<
const
DGFunction
<
ValueType
>
>
>&
functions
,
uint_t
level
,
DoFType
flag
=
All
)
const
{
WALBERLA_UNUSED
(
scalars
);
WALBERLA_UNUSED
(
functions
);
WALBERLA_UNUSED
(
level
);
WALBERLA_UNUSED
(
flag
);
WALBERLA_ABORT
(
"Not implemented."
);
};
/// \brief Assigns a linear combination of multiple VolumeDoFFunctions to this.
void
assign
(
const
std
::
vector
<
ValueType
>&
scalars
,
const
std
::
vector
<
std
::
reference_wrapper
<
const
DGFunction
<
ValueType
>
>
>&
functions
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment