Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dynamic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
MostafaMollaali
dynamic
Commits
06e32320
Commit
06e32320
authored
8 years ago
by
Christoph Lehmann
Browse files
Options
Downloads
Patches
Plain Diff
[PL] set current solution, time, dof_table in Cached2ndVar
parent
eb9d7091
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ProcessLib/CachedSecondaryVariable.cpp
+3
-5
3 additions, 5 deletions
ProcessLib/CachedSecondaryVariable.cpp
ProcessLib/CachedSecondaryVariable.h
+14
-2
14 additions, 2 deletions
ProcessLib/CachedSecondaryVariable.h
with
17 additions
and
7 deletions
ProcessLib/CachedSecondaryVariable.cpp
+
3
−
5
View file @
06e32320
...
@@ -51,8 +51,8 @@ GlobalVector const& CachedSecondaryVariable::evalField(
...
@@ -51,8 +51,8 @@ GlobalVector const& CachedSecondaryVariable::evalField(
std
::
unique_ptr
<
GlobalVector
>&
/*result_cache*/
std
::
unique_ptr
<
GlobalVector
>&
/*result_cache*/
)
const
)
const
{
{
// _current_solution = &x
;
(
void
)
t
,
(
void
)
x
,
(
void
)
dof_table
;
// _
dof_table =
&
dof_table;
assert
(
t
==
_t
&&
&
x
==
_current_solution
&&
&
dof_table
=
=
_
dof_table
)
;
return
evalFieldNoArgs
();
return
evalFieldNoArgs
();
}
}
...
@@ -64,10 +64,8 @@ GlobalVector const& CachedSecondaryVariable::evalFieldNoArgs() const
...
@@ -64,10 +64,8 @@ GlobalVector const& CachedSecondaryVariable::evalFieldNoArgs() const
return
_cached_nodal_values
;
return
_cached_nodal_values
;
}
}
DBUG
(
"Recomputing %s."
,
_internal_variable_name
.
c_str
());
DBUG
(
"Recomputing %s."
,
_internal_variable_name
.
c_str
());
// TODO fix
const
double
t
=
0.0
;
_extrapolator
.
extrapolate
(
_extrapolator
.
extrapolate
(
1
,
*
_extrapolatables
,
t
,
*
_current_solution
,
*
_dof_table
);
1
,
*
_extrapolatables
,
_
t
,
*
_current_solution
,
*
_dof_table
);
auto
const
&
nodal_values
=
_extrapolator
.
getNodalValues
();
auto
const
&
nodal_values
=
_extrapolator
.
getNodalValues
();
MathLib
::
LinAlg
::
copy
(
nodal_values
,
_cached_nodal_values
);
MathLib
::
LinAlg
::
copy
(
nodal_values
,
_cached_nodal_values
);
_needs_recomputation
=
false
;
_needs_recomputation
=
false
;
...
...
This diff is collapsed.
Click to expand it.
ProcessLib/CachedSecondaryVariable.h
+
14
−
2
View file @
06e32320
...
@@ -60,8 +60,19 @@ public:
...
@@ -60,8 +60,19 @@ public:
//! Returns extrapolation functions that compute the secondary variable.
//! Returns extrapolation functions that compute the secondary variable.
SecondaryVariableFunctions
getExtrapolator
();
SecondaryVariableFunctions
getExtrapolator
();
//! Set that recomputation is necessary.
void
setTime
(
const
double
t
)
void
expire
()
{
_needs_recomputation
=
true
;
}
{
_t
=
t
;
_needs_recomputation
=
true
;
}
void
updateCurrentSolution
(
GlobalVector
const
&
x
,
NumLib
::
LocalToGlobalIndexMap
const
&
dof_table
)
{
_current_solution
=
&
x
;
_dof_table
=
&
dof_table
;
_needs_recomputation
=
true
;
}
private
:
private
:
//! Provides the value at the current index of the _context.
//! Provides the value at the current index of the _context.
...
@@ -87,6 +98,7 @@ private:
...
@@ -87,6 +98,7 @@ private:
SecondaryVariableContext
const
&
_context
;
SecondaryVariableContext
const
&
_context
;
std
::
string
const
_internal_variable_name
;
std
::
string
const
_internal_variable_name
;
double
_t
=
0.0
;
GlobalVector
const
*
_current_solution
=
nullptr
;
GlobalVector
const
*
_current_solution
=
nullptr
;
NumLib
::
LocalToGlobalIndexMap
const
*
_dof_table
=
nullptr
;
NumLib
::
LocalToGlobalIndexMap
const
*
_dof_table
=
nullptr
;
};
};
...
...
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