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
Dmitri Naumov
ogs
Commits
b349a89d
Commit
b349a89d
authored
5 years ago
by
Tom Fischer
Browse files
Options
Downloads
Patches
Plain Diff
[PL/ComponentTransport] Check if all phases/components/properties exists.
parent
6c5d77d3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ProcessLib/ComponentTransport/ComponentTransportProcess.cpp
+57
-0
57 additions, 0 deletions
ProcessLib/ComponentTransport/ComponentTransportProcess.cpp
with
57 additions
and
0 deletions
ProcessLib/ComponentTransport/ComponentTransportProcess.cpp
+
57
−
0
View file @
b349a89d
...
@@ -20,6 +20,61 @@ namespace ProcessLib
...
@@ -20,6 +20,61 @@ namespace ProcessLib
{
{
namespace
ComponentTransport
namespace
ComponentTransport
{
{
void
checkMPLProperties
(
MeshLib
::
Mesh
const
&
mesh
,
ComponentTransportProcessData
const
&
process_data
)
{
DBUG
(
"Check the media properties of ComponentTransport process ..."
);
std
::
array
<
MaterialPropertyLib
::
PropertyType
,
4
>
const
required_properties_medium
=
{
MaterialPropertyLib
::
PropertyType
::
porosity
,
MaterialPropertyLib
::
PropertyType
::
transversal_dispersivity
,
MaterialPropertyLib
::
PropertyType
::
longitudinal_dispersivity
,
MaterialPropertyLib
::
PropertyType
::
permeability
};
std
::
array
<
MaterialPropertyLib
::
PropertyType
,
2
>
const
required_properties_liquid_phase
=
{
MaterialPropertyLib
::
PropertyType
::
density
,
MaterialPropertyLib
::
PropertyType
::
viscosity
};
std
::
array
<
MaterialPropertyLib
::
PropertyType
,
3
>
const
required_properties_components
=
{
MaterialPropertyLib
::
PropertyType
::
retardation_factor
,
MaterialPropertyLib
::
PropertyType
::
decay_rate
,
MaterialPropertyLib
::
PropertyType
::
molecular_diffusion
};
for
(
auto
const
&
element
:
mesh
.
getElements
())
{
auto
const
element_id
=
element
->
getID
();
auto
const
&
medium
=
*
process_data
.
media_map
->
getMedium
(
element_id
);
checkRequiredProperties
(
medium
,
required_properties_medium
);
// check if liquid phase definition and the corresponding properties
// exists
auto
const
&
liquid_phase
=
medium
.
phase
(
"AqueousLiquid"
);
checkRequiredProperties
(
liquid_phase
,
required_properties_liquid_phase
);
// check if components and the corresponding properties exists
auto
const
number_of_components
=
liquid_phase
.
numberOfComponents
();
for
(
std
::
size_t
component_id
=
0
;
component_id
<
number_of_components
;
++
component_id
)
{
if
(
!
liquid_phase
.
hasComponent
(
component_id
))
{
OGS_FATAL
(
"The component %u in the AqueousLiquid phase isn't "
"specified."
,
component_id
);
}
auto
const
&
component
=
liquid_phase
.
component
(
component_id
);
checkRequiredProperties
(
component
,
required_properties_components
);
}
}
DBUG
(
"Media properties verified."
);
}
ComponentTransportProcess
::
ComponentTransportProcess
(
ComponentTransportProcess
::
ComponentTransportProcess
(
std
::
string
name
,
std
::
string
name
,
MeshLib
::
Mesh
&
mesh
,
MeshLib
::
Mesh
&
mesh
,
...
@@ -48,6 +103,8 @@ void ComponentTransportProcess::initializeConcreteProcess(
...
@@ -48,6 +103,8 @@ void ComponentTransportProcess::initializeConcreteProcess(
MeshLib
::
Mesh
const
&
mesh
,
MeshLib
::
Mesh
const
&
mesh
,
unsigned
const
integration_order
)
unsigned
const
integration_order
)
{
{
checkMPLProperties
(
mesh
,
_process_data
);
const
int
process_id
=
0
;
const
int
process_id
=
0
;
ProcessLib
::
ProcessVariable
const
&
pv
=
getProcessVariables
(
process_id
)[
0
];
ProcessLib
::
ProcessVariable
const
&
pv
=
getProcessVariables
(
process_id
)[
0
];
...
...
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