Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CardMech
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
KIT
Mpp
CardMech
Commits
daa1010c
Commit
daa1010c
authored
2 years ago
by
jonathan.froehlich
Browse files
Options
Downloads
Patches
Plain Diff
Fixed VentricleProblem meshname
parent
615457cc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!221
Resolve "Run ActiveStrain"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/coupled/problem/PhysiologicalProblems.hpp
+7
-2
7 additions, 2 deletions
src/coupled/problem/PhysiologicalProblems.hpp
with
7 additions
and
2 deletions
src/coupled/problem/PhysiologicalProblems.hpp
+
7
−
2
View file @
daa1010c
...
...
@@ -6,6 +6,7 @@
class
ContractingVentricleProblem
:
public
CoupledProblem
{
using
ElasticityProblem
::
verbose
;
using
ElasticityProblem
::
meshesName
;
// Robin Boundary
//std::array<double, 8> robinParams{10.0, 0.0, 5.0, 0.0, 1500.0, 1e-4, 1.0, 0.0};
std
::
array
<
double
,
8
>
robinParams
{
0.2
,
0.0
,
5.0e-3
,
0.0
,
1500.0
,
1e-4
,
1.0
,
0.0
};
...
...
@@ -19,17 +20,21 @@ class ContractingVentricleProblem : public CoupledProblem {
VentricleProblem
ventricleProblem
;
public
:
explicit
ContractingVentricleProblem
()
:
ventricleProblem
()
{
explicit
ContractingVentricleProblem
(
std
::
string
const
&
defaultMesh
=
""
)
:
ventricleProblem
(
defaultMesh
)
{
Config
::
Get
(
"TractionK"
,
k
);
Config
::
Get
(
"TractionC"
,
c
);
ElasticityProblem
::
meshesName
=
ventricleProblem
.
GetMeshName
();
ElphyProblem
::
meshesName
=
ventricleProblem
.
GetMeshName
();
}
ContractingVentricleProblem
(
const
string
&
matName
,
const
vector
<
double
>
&
matPar
)
:
ventricleProblem
(
matName
,
matPar
)
{
Config
::
Get
(
"TractionK"
,
k
);
Config
::
Get
(
"TractionC"
,
c
);
ElasticityProblem
::
meshesName
=
ventricleProblem
.
GetMeshName
();
ElphyProblem
::
meshesName
=
ventricleProblem
.
GetMeshName
();
}
string
Name
()
const
override
{
...
...
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