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
Merge requests
!235
Resolve "MultiElasticity should hold multiple MainElasticities"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Resolve "MultiElasticity should hold multiple MainElasticities"
213-multielasticity-should-hold-multiple-mainelasticities
into
feature
Overview
0
Commits
9
Pipelines
1
Changes
1
Open
Niklas Baumgarten
requested to merge
213-multielasticity-should-hold-multiple-mainelasticities
into
feature
2 years ago
Overview
0
Commits
9
Pipelines
1
Changes
1
Expand
Closes
#213
Should be compiled and tested.
0
0
Merge request reports
Viewing commit
78a0c903
Prev
Next
Show latest version
1 file
+
24
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
78a0c903
Forward declared Vector
· 78a0c903
Jonathan Froehlich
authored
2 years ago
src/CardiacSolver.hpp
+
24
−
7
Options
@@ -19,9 +19,9 @@ public:
int
Vtk
()
const
{
return
vtk
;
}
};
class
Vector
;
/// Default Wrapper for all solvers to provide verbose and vtk values
template
<
typename
AssembleType
>
template
<
typename
AssembleType
,
typename
VectorType
=
Vector
>
class
CardiacSolverT
{
protected:
int
verbose
{
-
1
};
@@ -44,11 +44,28 @@ public:
int
Vtk
()
const
{
return
vtk
;
}
virtual
void
Initialize
(
AssembleType
&
assemble
,
Vector
&
u
)
=
0
;
virtual
bool
Method
(
AssembleType
&
assemble
,
Vector
&
u
)
=
0
;
virtual
bool
Step
(
AssembleType
&
assemble
,
Vector
&
u
)
=
0
;
/// Initializes solver and assembly structures and sets initial value for u
virtual
void
Initialize
(
AssembleType
&
assemble
,
VectorType
&
u
)
=
0
;
/**
* Runs the implemented method from assemble.FirstTStep() to assemble.LastTStep().
* Should be implemtend as follows:
* 1. Initialize
* 2. while(!assemble.Finished()) {bool c=Step; if(!c) return false;}
* 3. return true
* @param assemble
* @param u Vector to write the solution to
* @return convergence status of the method
*/
virtual
bool
Method
(
AssembleType
&
assemble
,
VectorType
&
u
)
=
0
;
/**
* Runs a single step of the implemented method
* @param assemble
* @param u Vector to write the solution to
* @return convergence status of the method
*/
virtual
bool
Step
(
AssembleType
&
assemble
,
VectorType
&
u
)
=
0
;
};
#endif //CARDIACSOLVER_HPP
Loading