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
d05ae8de
Commit
d05ae8de
authored
8 years ago
by
Dmitri Naumov
Browse files
Options
Downloads
Patches
Plain Diff
[PL] Use generalized MeshLib::getOrCreateMeshProp.
parent
2760e915
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/ProcessOutput.cpp
+4
-41
4 additions, 41 deletions
ProcessLib/ProcessOutput.cpp
ProcessLib/ProcessVariable.cpp
+2
-16
2 additions, 16 deletions
ProcessLib/ProcessVariable.cpp
with
6 additions
and
57 deletions
ProcessLib/ProcessOutput.cpp
+
4
−
41
View file @
d05ae8de
...
@@ -119,41 +119,6 @@ void doProcessOutput(std::string const& file_name,
...
@@ -119,41 +119,6 @@ void doProcessOutput(std::string const& file_name,
#ifndef USE_PETSC
#ifndef USE_PETSC
// the following section is for the output of secondary variables
// the following section is for the output of secondary variables
auto
count_mesh_items
=
[](
MeshLib
::
Mesh
const
&
mesh
,
MeshLib
::
MeshItemType
type
)
->
std
::
size_t
{
switch
(
type
)
{
case
MeshLib
::
MeshItemType
::
Cell
:
return
mesh
.
getNumberOfElements
();
case
MeshLib
::
MeshItemType
::
Node
:
return
mesh
.
getNumberOfNodes
();
default:
break
;
// avoid compiler warning
}
return
0
;
};
auto
get_or_create_mesh_property
=
[
&
mesh
,
&
count_mesh_items
](
std
::
string
const
&
property_name
,
MeshLib
::
MeshItemType
type
)
{
// Get or create a property vector for results.
MeshLib
::
PropertyVector
<
double
>*
result
=
nullptr
;
auto
const
N
=
count_mesh_items
(
mesh
,
type
);
if
(
mesh
.
getProperties
().
existsPropertyVector
<
double
>
(
property_name
))
{
result
=
mesh
.
getProperties
().
template
getPropertyVector
<
double
>(
property_name
);
}
else
{
result
=
mesh
.
getProperties
().
template
createNewPropertyVector
<
double
>(
property_name
,
type
);
result
->
resize
(
N
);
}
assert
(
result
&&
result
->
size
()
==
N
);
return
result
;
};
auto
add_secondary_var
=
[
&
](
SecondaryVariable
const
&
var
,
auto
add_secondary_var
=
[
&
](
SecondaryVariable
const
&
var
,
std
::
string
const
&
output_name
)
std
::
string
const
&
output_name
)
{
{
...
@@ -162,9 +127,8 @@ void doProcessOutput(std::string const& file_name,
...
@@ -162,9 +127,8 @@ void doProcessOutput(std::string const& file_name,
{
{
DBUG
(
" secondary variable %s"
,
output_name
.
c_str
());
DBUG
(
" secondary variable %s"
,
output_name
.
c_str
());
auto
result
=
get_or_create_mesh_property
(
auto
result
=
MeshLib
::
getOrCreateMeshProperty
<
double
>
(
output_name
,
MeshLib
::
MeshItemType
::
Node
);
mesh
,
output_name
,
MeshLib
::
MeshItemType
::
Node
,
1
);
assert
(
result
->
size
()
==
mesh
.
getNumberOfNodes
());
std
::
unique_ptr
<
GlobalVector
>
result_cache
;
std
::
unique_ptr
<
GlobalVector
>
result_cache
;
auto
const
&
nodal_values
=
auto
const
&
nodal_values
=
...
@@ -183,9 +147,8 @@ void doProcessOutput(std::string const& file_name,
...
@@ -183,9 +147,8 @@ void doProcessOutput(std::string const& file_name,
DBUG
(
" secondary variable %s residual"
,
output_name
.
c_str
());
DBUG
(
" secondary variable %s residual"
,
output_name
.
c_str
());
auto
const
&
property_name_res
=
output_name
+
"_residual"
;
auto
const
&
property_name_res
=
output_name
+
"_residual"
;
auto
result
=
get_or_create_mesh_property
(
auto
result
=
MeshLib
::
getOrCreateMeshProperty
<
double
>
(
property_name_res
,
MeshLib
::
MeshItemType
::
Cell
);
mesh
,
property_name_res
,
MeshLib
::
MeshItemType
::
Cell
,
1
);
assert
(
result
->
size
()
==
mesh
.
getNumberOfElements
());
std
::
unique_ptr
<
GlobalVector
>
result_cache
;
std
::
unique_ptr
<
GlobalVector
>
result_cache
;
auto
const
&
residuals
=
auto
const
&
residuals
=
...
...
This diff is collapsed.
Click to expand it.
ProcessLib/ProcessVariable.cpp
+
2
−
16
View file @
d05ae8de
...
@@ -116,22 +116,8 @@ MeshLib::Mesh const& ProcessVariable::getMesh() const
...
@@ -116,22 +116,8 @@ MeshLib::Mesh const& ProcessVariable::getMesh() const
MeshLib
::
PropertyVector
<
double
>&
ProcessVariable
::
getOrCreateMeshProperty
()
MeshLib
::
PropertyVector
<
double
>&
ProcessVariable
::
getOrCreateMeshProperty
()
{
{
if
(
_mesh
.
getProperties
().
hasPropertyVector
(
_name
))
return
*
MeshLib
::
getOrCreateMeshProperty
<
double
>
(
{
_mesh
,
_name
,
MeshLib
::
MeshItemType
::
Node
,
_n_components
);
auto
result
=
_mesh
.
getProperties
().
template
getPropertyVector
<
double
>(
_name
);
assert
(
result
);
assert
(
result
->
size
()
==
_mesh
.
getNumberOfNodes
()
*
_n_components
);
return
*
result
;
}
else
{
auto
result
=
_mesh
.
getProperties
().
template
createNewPropertyVector
<
double
>(
_name
,
MeshLib
::
MeshItemType
::
Node
,
_n_components
);
assert
(
result
);
result
->
resize
(
_mesh
.
getNumberOfNodes
()
*
_n_components
);
return
*
result
;
}
}
}
std
::
vector
<
std
::
unique_ptr
<
BoundaryCondition
>>
std
::
vector
<
std
::
unique_ptr
<
BoundaryCondition
>>
...
...
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