Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-gfe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sander, Oliver
dune-gfe
Commits
14740253
Commit
14740253
authored
14 years ago
by
Oliver Sander
Committed by
sander@FU-BERLIN.DE
14 years ago
Browse files
Options
Downloads
Patches
Plain Diff
also store Dirichlet boundaries and Dirichlet values
[[Imported from SVN: r6753]]
parent
63474bfe
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/gfe/coupling/rodcontinuumcomplex.hh
+29
-1
29 additions, 1 deletion
dune/gfe/coupling/rodcontinuumcomplex.hh
with
29 additions
and
1 deletion
dune/gfe/coupling/rodcontinuumcomplex.hh
+
29
−
1
View file @
14740253
...
...
@@ -6,19 +6,47 @@
#include
<dune/common/shared_ptr.hh>
#include
<dune/istl/bvector.hh>
#include
<dune/gfe/rigidbodymotion.hh>
/** \brief A set of rods and a set of continua, all coupled to each other
*/
template
<
class
RodGrid
,
class
ContinuumGrid
>
class
RodContinuumComplex
{
typedef
std
::
vector
<
RigidBodyMotion
<
3
>
>
RodConfiguration
;
typedef
Dune
::
BlockVector
<
Dune
::
FieldVector
<
double
,
3
>
>
ContinuumConfiguration
;
public:
/////////////////////////////////////////////////////////////////////
// Data concerning the individual rod problems
/////////////////////////////////////////////////////////////////////
/** \brief The set of rods, accessible by name (string) */
std
::
map
<
std
::
string
,
Dune
::
shared_ptr
<
RodGrid
>
>
rodGrids_
;
/** \brief The set of rods, accessible by name (string) */
/** \brief A Dirichlet boundary for each rod */
std
::
map
<
std
::
string
,
LeafBoundaryPatch
<
RodGrid
>
>
rodDirichletBoundaries_
;
/** \brief The Dirichlet values for each rod */
std
::
map
<
std
::
string
,
RodConfiguration
>
rodDirichletValues_
;
/////////////////////////////////////////////////////////////////////
// Data concerning the individual continuum problems
/////////////////////////////////////////////////////////////////////
/** \brief The set of continua, accessible by name (string) */
std
::
map
<
std
::
string
,
Dune
::
shared_ptr
<
ContinuumGrid
>
>
continuumGrids_
;
/** \brief A Dirichlet boundary for each continuum */
std
::
map
<
std
::
string
,
LeafBoundaryPatch
<
ContinuumGrid
>
>
continuumDirichletBoundaries_
;
/** \brief The Dirichlet values for each continuum */
std
::
map
<
std
::
string
,
ContinuumConfiguration
>
continuumDirichletValues_
;
};
#endif // ROD_CONTINUUM_COMPLEX_HH
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment