Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Karsten Rink
ogs
Commits
2bcaff45
Commit
2bcaff45
authored
6 years ago
by
wenqing
Browse files
Options
Downloads
Patches
Plain Diff
[Process] added members to check element deactivation
parent
3c701ff2
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
ProcessLib/Process.cpp
+9
-0
9 additions, 0 deletions
ProcessLib/Process.cpp
ProcessLib/Process.h
+3
-2
3 additions, 2 deletions
ProcessLib/Process.h
with
12 additions
and
2 deletions
ProcessLib/Process.cpp
+
9
−
0
View file @
2bcaff45
...
...
@@ -190,6 +190,15 @@ MathLib::MatrixSpecifications Process::getMatrixSpecifications(
&
l
.
getGhostIndices
(),
&
_sparsity_pattern
};
}
void
Process
::
checkElementDeactivation
(
double
const
time
,
const
int
process_id
)
{
auto
const
&
variables_per_process
=
getProcessVariables
(
process_id
);
for
(
auto
const
&
variable
:
variables_per_process
)
{
variable
.
get
().
checkElementDeactivation
(
time
);
}
}
void
Process
::
preAssemble
(
const
double
t
,
GlobalVector
const
&
x
)
{
preAssembleConcreteProcess
(
t
,
x
);
...
...
This diff is collapsed.
Click to expand it.
ProcessLib/Process.h
+
3
−
2
View file @
2bcaff45
...
...
@@ -90,6 +90,8 @@ public:
_coupled_solutions
=
coupled_solutions
;
}
void
checkElementDeactivation
(
double
const
time
,
const
int
process_id
);
bool
isMonolithicSchemeUsed
()
const
{
return
_use_monolithic_scheme
;
}
virtual
void
setCoupledTermForTheStaggeredSchemeToLocalAssemblers
()
{}
void
preAssemble
(
const
double
t
,
GlobalVector
const
&
x
)
override
final
;
...
...
@@ -284,7 +286,7 @@ protected:
GlobalSparsityPattern
_sparsity_pattern
;
pr
ivate
:
pr
otected
:
/// Variables used by this process. For the monolithic scheme or a
/// single process, the size of the outer vector is one. For the
/// staggered scheme, the size of the outer vector is the number of the
...
...
@@ -292,7 +294,6 @@ private:
std
::
vector
<
std
::
vector
<
std
::
reference_wrapper
<
ProcessVariable
>>>
_process_variables
;
protected
:
/// Vector for boundary conditions. For the monolithic scheme or a
/// single process, the size of the vector is one. For the staggered
/// scheme, the size of vector is the number of the coupled processes.
...
...
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