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
a59b85dd
Commit
a59b85dd
authored
5 years ago
by
Dmitri Naumov
Browse files
Options
Downloads
Patches
Plain Diff
[PL] Return flat vector of current staggerd sols.
The vector has same structure as for the monolithic case.
parent
b8033584
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/CoupledSolutionsForStaggeredScheme.cpp
+16
-8
16 additions, 8 deletions
ProcessLib/CoupledSolutionsForStaggeredScheme.cpp
ProcessLib/CoupledSolutionsForStaggeredScheme.h
+3
-3
3 additions, 3 deletions
ProcessLib/CoupledSolutionsForStaggeredScheme.h
with
19 additions
and
11 deletions
ProcessLib/CoupledSolutionsForStaggeredScheme.cpp
+
16
−
8
View file @
a59b85dd
...
@@ -59,7 +59,7 @@ std::vector<double> getPreviousLocalSolutions(
...
@@ -59,7 +59,7 @@ std::vector<double> getPreviousLocalSolutions(
return
local_xs_t0
;
return
local_xs_t0
;
}
}
std
::
vector
<
std
::
vector
<
double
>
>
getCurrentLocalSolutions
(
std
::
vector
<
double
>
getCurrentLocalSolutions
(
const
CoupledSolutionsForStaggeredScheme
&
cpl_xs
,
const
CoupledSolutionsForStaggeredScheme
&
cpl_xs
,
const
std
::
vector
<
std
::
vector
<
GlobalIndexType
>>&
indices
)
const
std
::
vector
<
std
::
vector
<
GlobalIndexType
>>&
indices
)
{
{
...
@@ -68,15 +68,23 @@ std::vector<std::vector<double>> getCurrentLocalSolutions(
...
@@ -68,15 +68,23 @@ std::vector<std::vector<double>> getCurrentLocalSolutions(
return
{};
return
{};
}
}
const
auto
number_of_coupled_solutions
=
cpl_xs
.
coupled_xs
.
size
();
std
::
size_t
const
local_solutions_size
=
std
::
accumulate
(
std
::
vector
<
std
::
vector
<
double
>>
local_xs_t1
;
cbegin
(
indices
),
local_xs_t1
.
reserve
(
number_of_coupled_solutions
);
cend
(
indices
),
std
::
size_t
(
0
),
[](
GlobalIndexType
const
size
,
std
::
vector
<
GlobalIndexType
>
const
&
process_indices
)
{
return
size
+
process_indices
.
size
();
});
std
::
vector
<
double
>
local_xs_t1
;
local_xs_t1
.
reserve
(
local_solutions_size
);
int
coupling
_id
=
0
;
int
process
_id
=
0
;
for
(
auto
const
*
x_t1
:
cpl_xs
.
coupled_xs
)
for
(
auto
const
&
x_t1
:
cpl_xs
.
coupled_xs
)
{
{
local_xs_t1
.
emplace_back
(
x_t1
->
get
(
indices
[
coupling_id
]));
auto
const
&
values
=
x_t1
->
get
(
indices
[
process_id
]);
coupling_id
++
;
local_xs_t1
.
insert
(
cend
(
local_xs_t1
),
cbegin
(
values
),
cend
(
values
));
process_id
++
;
}
}
return
local_xs_t1
;
return
local_xs_t1
;
}
}
...
...
This diff is collapsed.
Click to expand it.
ProcessLib/CoupledSolutionsForStaggeredScheme.h
+
3
−
3
View file @
a59b85dd
...
@@ -50,7 +50,7 @@ struct CoupledSolutionsForStaggeredScheme
...
@@ -50,7 +50,7 @@ struct CoupledSolutionsForStaggeredScheme
struct
LocalCoupledSolutions
struct
LocalCoupledSolutions
{
{
LocalCoupledSolutions
(
std
::
vector
<
double
>&&
local_coupled_xs0_
,
LocalCoupledSolutions
(
std
::
vector
<
double
>&&
local_coupled_xs0_
,
std
::
vector
<
std
::
vector
<
double
>
>
&&
local_coupled_xs_
)
std
::
vector
<
double
>&&
local_coupled_xs_
)
:
local_coupled_xs0
(
std
::
move
(
local_coupled_xs0_
)),
:
local_coupled_xs0
(
std
::
move
(
local_coupled_xs0_
)),
local_coupled_xs
(
std
::
move
(
local_coupled_xs_
))
local_coupled_xs
(
std
::
move
(
local_coupled_xs_
))
{
{
...
@@ -59,7 +59,7 @@ struct LocalCoupledSolutions
...
@@ -59,7 +59,7 @@ struct LocalCoupledSolutions
/// Local solutions of the previous time step.
/// Local solutions of the previous time step.
std
::
vector
<
double
>
const
local_coupled_xs0
;
std
::
vector
<
double
>
const
local_coupled_xs0
;
/// Local solutions of the current time step.
/// Local solutions of the current time step.
std
::
vector
<
std
::
vector
<
double
>
>
const
local_coupled_xs
;
std
::
vector
<
double
>
const
local_coupled_xs
;
};
};
/**
/**
...
@@ -80,7 +80,7 @@ std::vector<double> getPreviousLocalSolutions(
...
@@ -80,7 +80,7 @@ std::vector<double> getPreviousLocalSolutions(
* @param indices Nodal indices of an element.
* @param indices Nodal indices of an element.
* @return Nodal solutions of the current time step of an element
* @return Nodal solutions of the current time step of an element
*/
*/
std
::
vector
<
std
::
vector
<
double
>
>
getCurrentLocalSolutions
(
std
::
vector
<
double
>
getCurrentLocalSolutions
(
const
CoupledSolutionsForStaggeredScheme
&
cpl_xs
,
const
CoupledSolutionsForStaggeredScheme
&
cpl_xs
,
const
std
::
vector
<
std
::
vector
<
GlobalIndexType
>>&
indices
);
const
std
::
vector
<
std
::
vector
<
GlobalIndexType
>>&
indices
);
}
// namespace ProcessLib
}
// namespace ProcessLib
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