Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MoReFEM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
MoReFEM
CoreLibrary
MoReFEM
Commits
55c20bba
Commit
55c20bba
authored
9 years ago
by
GILLES Sebastien
Browse files
Options
Downloads
Patches
Plain Diff
#820
Introcude non homogeneous boundary condition.
parent
b3280b29
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Data/Lua/demo_input_poromechanics.lua
+37
-0
37 additions, 0 deletions
Data/Lua/demo_input_poromechanics.lua
Sources/ModelInstances/UnderDevelopment/Poromechanics/InputParameterList.hpp
+2
-0
2 additions, 0 deletions
...ces/UnderDevelopment/Poromechanics/InputParameterList.hpp
with
39 additions
and
0 deletions
Data/Lua/demo_input_poromechanics.lua
+
37
−
0
View file @
55c20bba
...
@@ -724,6 +724,43 @@ EssentialBoundaryCondition11 = {
...
@@ -724,6 +724,43 @@ EssentialBoundaryCondition11 = {
}
-- EssentialBoundaryCondition11
}
-- EssentialBoundaryCondition11
EssentialBoundaryCondition12
=
{
-- Name of the boundary condition (must be unique).
-- Expected format: "VALUE"
name
=
'fluid_robin_interface_dH'
,
-- Comp1, Comp2 or Comp3
-- Expected format: "VALUE"
-- Constraint: ops_in(v, {'Comp1', 'Comp2', 'Comp3', 'Comp12', 'Comp23', 'Comp13', 'Comp123'})
component
=
'Comp12'
,
-- Name of the unknown addressed by the boundary condition.
-- Expected format: "VALUE"
unknown
=
'fluid_velocity'
,
-- Values at each of the relevant component.
-- Expected format: {VALUE1, VALUE2, ...}
value
=
{
0
.,
0
.
},
-- Index of the domain onto which essential boundary condition is defined.
-- Expected format: VALUE
domain_index
=
13
,
-- Whether the values of the boundary condition may vary over time.
-- Expected format: 'true' or 'false' (without the quote)
is_mutable
=
true
,
-- Whether a dof of this boundary condition may also belong to another one. This highlights an ill-defined
-- model in most cases, but I nonetheless need it for FSI/ALE.
-- Expected format: 'true' or 'false' (without the quote)
may_overlap
=
false
}
-- EssentialBoundaryCondition12
-- Radial on solid
-- Radial on solid
EssentialBoundaryCondition20
=
{
EssentialBoundaryCondition20
=
{
...
...
This diff is collapsed.
Click to expand it.
Sources/ModelInstances/UnderDevelopment/Poromechanics/InputParameterList.hpp
+
2
−
0
View file @
55c20bba
...
@@ -98,6 +98,7 @@ namespace HappyHeart
...
@@ -98,6 +98,7 @@ namespace HappyHeart
{
{
fluid_non_homegeneous
=
10
,
fluid_non_homegeneous
=
10
,
fluid_robin_interface
=
11
,
fluid_robin_interface
=
11
,
fluid_robin_interface_dH
=
12
,
solid_radial
=
20
,
solid_radial
=
20
,
solid_vertical
=
21
,
solid_vertical
=
21
,
...
@@ -182,6 +183,7 @@ namespace HappyHeart
...
@@ -182,6 +183,7 @@ namespace HappyHeart
InputParameter
::
DirichletBoundaryCondition
<
EnumUnderlyingType
(
BoundaryConditionIndex
::
fluid_non_homegeneous
)
>
,
InputParameter
::
DirichletBoundaryCondition
<
EnumUnderlyingType
(
BoundaryConditionIndex
::
fluid_non_homegeneous
)
>
,
InputParameter
::
DirichletBoundaryCondition
<
EnumUnderlyingType
(
BoundaryConditionIndex
::
fluid_robin_interface
)
>
,
InputParameter
::
DirichletBoundaryCondition
<
EnumUnderlyingType
(
BoundaryConditionIndex
::
fluid_robin_interface
)
>
,
InputParameter
::
DirichletBoundaryCondition
<
EnumUnderlyingType
(
BoundaryConditionIndex
::
fluid_robin_interface_dH
)
>
,
InputParameter
::
DirichletBoundaryCondition
<
EnumUnderlyingType
(
BoundaryConditionIndex
::
solid_radial
)
>
,
InputParameter
::
DirichletBoundaryCondition
<
EnumUnderlyingType
(
BoundaryConditionIndex
::
solid_radial
)
>
,
InputParameter
::
DirichletBoundaryCondition
<
EnumUnderlyingType
(
BoundaryConditionIndex
::
solid_vertical
)
>
,
InputParameter
::
DirichletBoundaryCondition
<
EnumUnderlyingType
(
BoundaryConditionIndex
::
solid_vertical
)
>
,
// InputParameter::DirichletBoundaryCondition<EnumUnderlyingType(BoundaryConditionIndex::solid)>,
// InputParameter::DirichletBoundaryCondition<EnumUnderlyingType(BoundaryConditionIndex::solid)>,
...
...
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