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
36d8f49b
Commit
36d8f49b
authored
5 years ago
by
Dmitri Naumov
Browse files
Options
Downloads
Patches
Plain Diff
[NL] Out-of-balance forces. Picard.
parent
f3541151
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NumLib/ODESolver/NonlinearSolver.cpp
+23
-0
23 additions, 0 deletions
NumLib/ODESolver/NonlinearSolver.cpp
NumLib/ODESolver/NonlinearSolver.h
+3
-7
3 additions, 7 deletions
NumLib/ODESolver/NonlinearSolver.h
with
26 additions
and
7 deletions
NumLib/ODESolver/NonlinearSolver.cpp
+
23
−
0
View file @
36d8f49b
...
@@ -27,6 +27,24 @@ void NonlinearSolver<NonlinearSolverTag::Picard>::assemble(
...
@@ -27,6 +27,24 @@ void NonlinearSolver<NonlinearSolverTag::Picard>::assemble(
_equation_system
->
assemble
(
x
,
process_id
);
_equation_system
->
assemble
(
x
,
process_id
);
}
}
void
NonlinearSolver
<
NonlinearSolverTag
::
Picard
>::
calculateOutOfBalanceForces
(
std
::
vector
<
GlobalVector
*>
const
&
x
,
int
const
process_id
)
{
if
(
!
_compensate_initial_out_of_balance_forces
)
return
;
auto
&
A
=
NumLib
::
GlobalMatrixProvider
::
provider
.
getMatrix
(
_A_id
);
auto
&
rhs
=
NumLib
::
GlobalVectorProvider
::
provider
.
getVector
(
_rhs_id
);
_equation_system
->
assemble
(
x
,
process_id
);
_equation_system
->
getA
(
A
);
_equation_system
->
getRhs
(
rhs
);
// F_oob = A * x - rhs
_f_oob
=
&
NumLib
::
GlobalVectorProvider
::
provider
.
getVector
();
MathLib
::
LinAlg
::
matMult
(
A
,
*
x
[
process_id
],
*
_f_oob
);
MathLib
::
LinAlg
::
axpy
(
*
_f_oob
,
-
1.0
,
rhs
);
// res -= rhs
}
NonlinearSolverStatus
NonlinearSolver
<
NonlinearSolverTag
::
Picard
>::
solve
(
NonlinearSolverStatus
NonlinearSolver
<
NonlinearSolverTag
::
Picard
>::
solve
(
std
::
vector
<
GlobalVector
*>&
x
,
std
::
vector
<
GlobalVector
*>&
x
,
std
::
function
<
void
(
int
,
GlobalVector
const
&
)
>
const
&
postIterationCallback
,
std
::
function
<
void
(
int
,
GlobalVector
const
&
)
>
const
&
postIterationCallback
,
...
@@ -73,6 +91,11 @@ NonlinearSolverStatus NonlinearSolver<NonlinearSolverTag::Picard>::solve(
...
@@ -73,6 +91,11 @@ NonlinearSolverStatus NonlinearSolver<NonlinearSolverTag::Picard>::solve(
sys
.
getRhs
(
rhs
);
sys
.
getRhs
(
rhs
);
INFO
(
"[time] Assembly took %g s."
,
time_assembly
.
elapsed
());
INFO
(
"[time] Assembly took %g s."
,
time_assembly
.
elapsed
());
// Apply out-of-balance forces if set.
if
(
_f_oob
!=
nullptr
)
LinAlg
::
axpy
(
rhs
,
-
1
,
*
_f_oob
);
timer_dirichlet
.
start
();
timer_dirichlet
.
start
();
sys
.
applyKnownSolutionsPicard
(
A
,
rhs
,
*
x_new
[
process_id
]);
sys
.
applyKnownSolutionsPicard
(
A
,
rhs
,
*
x_new
[
process_id
]);
time_dirichlet
+=
timer_dirichlet
.
elapsed
();
time_dirichlet
+=
timer_dirichlet
.
elapsed
();
...
...
This diff is collapsed.
Click to expand it.
NumLib/ODESolver/NonlinearSolver.h
+
3
−
7
View file @
36d8f49b
...
@@ -193,13 +193,8 @@ public:
...
@@ -193,13 +193,8 @@ public:
void
assemble
(
std
::
vector
<
GlobalVector
*>
const
&
x
,
void
assemble
(
std
::
vector
<
GlobalVector
*>
const
&
x
,
int
const
process_id
)
const
override
;
int
const
process_id
)
const
override
;
void
calculateOutOfBalanceForces
(
GlobalVector
const
&
/*x*/
)
override
void
calculateOutOfBalanceForces
(
std
::
vector
<
GlobalVector
*>
const
&
x
,
{
int
const
process_id
)
override
;
if
(
!
_compensate_initial_out_of_balance_forces
)
return
;
OGS_FATAL
(
"Calculation of out-of-balance forces is not implemented."
);
}
NonlinearSolverStatus
solve
(
NonlinearSolverStatus
solve
(
std
::
vector
<
GlobalVector
*>&
x
,
std
::
vector
<
GlobalVector
*>&
x
,
...
@@ -220,6 +215,7 @@ private:
...
@@ -220,6 +215,7 @@ private:
ConvergenceCriterion
*
_convergence_criterion
=
nullptr
;
ConvergenceCriterion
*
_convergence_criterion
=
nullptr
;
const
int
_maxiter
;
//!< maximum number of iterations
const
int
_maxiter
;
//!< maximum number of iterations
GlobalVector
*
_f_oob
=
nullptr
;
//!< Out-of-balance forces vector.
std
::
size_t
_A_id
=
0u
;
//!< ID of the \f$ A \f$ matrix.
std
::
size_t
_A_id
=
0u
;
//!< ID of the \f$ A \f$ matrix.
std
::
size_t
_rhs_id
=
0u
;
//!< ID of the right-hand side vector.
std
::
size_t
_rhs_id
=
0u
;
//!< ID of the right-hand side vector.
std
::
size_t
_x_new_id
=
0u
;
//!< ID of the vector storing the solution of
std
::
size_t
_x_new_id
=
0u
;
//!< ID of the vector storing the solution of
...
...
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