Loading [MathJax]/extensions/MathZoom.js
OGS
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
v
w
z
Enumerations
b
c
d
e
f
g
i
l
m
n
o
p
s
t
u
v
Enumerator
a
b
c
d
e
f
g
h
l
m
n
p
r
s
t
v
y
Classes
Class List
Class Index
Class Hierarchy
Files
File List
File Members
All
a
b
c
d
e
f
g
i
k
m
n
o
p
r
s
t
v
w
x
Functions
a
c
d
e
f
g
i
m
o
p
r
s
t
v
w
Variables
Typedefs
Enumerations
Macros
b
c
g
m
n
o
p
r
s
t
▼
OGS
►
OpenGeoSys 6.5.4-293-gce72897f source code documentation
►
OGS CTests—Project Files
►
OGS Input File Parameters—Quality Assurance
►
OGS Input File Parameters
BulkMappingDocuPage
Todo List
OGS Input File Parameters—List of incomplete documentation pages
Bibliography
►
Namespaces
►
Classes
▼
Files
▼
File List
►
Applications
►
BaseLib
►
build
▼
ChemistryLib
►
Common
▼
PhreeqcIOData
AqueousSolution.cpp
►
AqueousSolution.h
ChemicalSystem.cpp
►
ChemicalSystem.h
►
CreateAqueousSolution.cpp
►
CreateAqueousSolution.h
►
CreateChemicalSystem.cpp
►
CreateChemicalSystem.h
►
CreateEquilibriumReactants.cpp
►
CreateEquilibriumReactants.h
►
CreateExchange.cpp
►
CreateExchange.h
►
CreateKineticReactant.cpp
►
CreateKineticReactant.h
►
CreateKnobs.cpp
►
CreateKnobs.h
►
CreateOutput.cpp
►
CreateOutput.h
►
CreateSolutionComponent.cpp
►
CreateSolutionComponent.h
►
CreateSurface.cpp
►
CreateSurface.h
►
CreateUserPunch.cpp
►
CreateUserPunch.h
Dump.cpp
►
Dump.h
EquilibriumReactant.cpp
►
EquilibriumReactant.h
Exchange.cpp
►
Exchange.h
KineticReactant.cpp
►
KineticReactant.h
►
Knobs.cpp
►
Knobs.h
►
Output.cpp
►
Output.h
►
ReactionRate.cpp
►
ReactionRate.h
►
Surface.h
►
UserPunch.cpp
►
UserPunch.h
►
PhreeqcKernelData
►
SelfContainedSolverData
►
ChemicalSolverInterface.h
►
ChemicalSolverType.h
►
CreateChemicalSolverInterface.cpp
►
CreateChemicalSolverInterface.h
►
PhreeqcIO.cpp
►
PhreeqcIO.h
►
PhreeqcKernel.cpp
►
PhreeqcKernel.h
Documentation
►
GeoLib
►
InfoLib
►
MaterialLib
►
MathLib
►
MeshGeoToolsLib
►
MeshLib
►
MeshToolsLib
►
NumLib
►
ParameterLib
►
ProcessLib
►
File Members
CreateAqueousSolution.cpp
Go to the documentation of this file.
1
11
#include "
CreateAqueousSolution.h
"
12
13
#include "
AqueousSolution.h
"
14
#include "
BaseLib/ConfigTree.h
"
15
#include "
ChemistryLib/Common/CreateChargeBalance.h
"
16
#include "
CreateSolutionComponent.h
"
17
#include "
MeshLib/Mesh.h
"
18
#include "
MeshLib/Utils/getOrCreateMeshProperty.h
"
19
20
namespace
ChemistryLib
21
{
22
namespace
PhreeqcIOData
23
{
24
std::unique_ptr<AqueousSolution>
createAqueousSolution
(
25
BaseLib::ConfigTree
const
& config,
MeshLib::Mesh
& mesh)
26
{
28
auto
const
fixing_pe = config.
getConfigAttribute
<
bool
>(
"fixing_pe"
,
false
);
29
31
auto
const
temperature = config.
getConfigParameter
<
double
>(
"temperature"
);
32
34
auto
const
pressure = config.
getConfigParameter
<
double
>(
"pressure"
);
35
37
auto
const
pe0 = config.
getConfigParameter
<
double
>(
"pe"
);
38
39
auto
pe
=
MeshLib::getOrCreateMeshProperty<double>
(
40
mesh,
"pe"
,
MeshLib::MeshItemType::IntegrationPoint
, 1);
41
42
auto
components =
createSolutionComponents
(config);
43
44
auto
charge_balance =
createChargeBalance
(config);
45
46
return
std::make_unique<AqueousSolution>(fixing_pe, temperature, pressure,
47
pe
, pe0, std::move(components),
48
charge_balance);
49
}
24
std::unique_ptr<AqueousSolution>
createAqueousSolution
( {
…
}
50
}
// namespace PhreeqcIOData
51
}
// namespace ChemistryLib
ConfigTree.h
CreateChargeBalance.h
CreateSolutionComponent.h
Mesh.h
Definition of the Mesh class.
AqueousSolution.h
CreateAqueousSolution.h
BaseLib::ConfigTree
Definition
ConfigTree.h:107
BaseLib::ConfigTree::getConfigParameter
T getConfigParameter(std::string const ¶m) const
Definition
ConfigTree-impl.h:41
BaseLib::ConfigTree::getConfigAttribute
T getConfigAttribute(std::string const &attr) const
Definition
ConfigTree-impl.h:167
MeshLib::Mesh
Definition
Mesh.h:45
getOrCreateMeshProperty.h
ChemistryLib::PhreeqcIOData::createAqueousSolution
std::unique_ptr< AqueousSolution > createAqueousSolution(BaseLib::ConfigTree const &config, MeshLib::Mesh &mesh)
Definition
CreateAqueousSolution.cpp:24
ChemistryLib::PhreeqcIOData::ItemType::pe
@ pe
ChemistryLib::PhreeqcIOData::createSolutionComponents
std::vector< Component > createSolutionComponents(BaseLib::ConfigTree const &config)
Definition
CreateSolutionComponent.cpp:20
ChemistryLib
Definition
ChemicalSolverInterface.h:31
ChemistryLib::createChargeBalance
ChargeBalance createChargeBalance(BaseLib::ConfigTree const &config)
Definition
CreateChargeBalance.cpp:19
MeshLib::getOrCreateMeshProperty
PropertyVector< T > * getOrCreateMeshProperty(Mesh &mesh, std::string const &property_name, MeshItemType const item_type, int const number_of_components)
Definition
getOrCreateMeshProperty.h:24
MeshLib::MeshItemType::IntegrationPoint
@ IntegrationPoint
ChemistryLib
PhreeqcIOData
CreateAqueousSolution.cpp
Generated by
1.12.0