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
d652be41
Commit
d652be41
authored
5 years ago
by
renchao.lu
Browse files
Options
Downloads
Patches
Plain Diff
[CL] Pass mesh information for creating PhreeqcIO instance.
parent
747f24e9
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Applications/ApplicationsLib/ProjectData.cpp
+2
-2
2 additions, 2 deletions
Applications/ApplicationsLib/ProjectData.cpp
ChemistryLib/CreatePhreeqcIO.cpp
+7
-10
7 additions, 10 deletions
ChemistryLib/CreatePhreeqcIO.cpp
ChemistryLib/CreatePhreeqcIO.h
+6
-1
6 additions, 1 deletion
ChemistryLib/CreatePhreeqcIO.h
with
15 additions
and
13 deletions
Applications/ApplicationsLib/ProjectData.cpp
+
2
−
2
View file @
d652be41
...
...
@@ -1043,8 +1043,8 @@ void ProjectData::parseChemicalSystem(
component_transport_process
->
getProcessIDToComponentNameMap
();
_chemical_system
=
ChemistryLib
::
createPhreeqcIO
(
_mesh_vec
[
0
]
->
getNumberOfBaseNodes
()
,
process_id_to_component_name_map
,
*
config
,
output_directory
);
*
_mesh_vec
[
0
]
,
process_id_to_component_name_map
,
*
config
,
output_directory
);
}
else
{
...
...
This diff is collapsed.
Click to expand it.
ChemistryLib/CreatePhreeqcIO.cpp
+
7
−
10
View file @
d652be41
...
...
@@ -11,6 +11,7 @@
#include
"BaseLib/Error.h"
#include
"CreateOutput.h"
#include
"CreatePhreeqcIO.h"
#include
"MeshLib/Mesh.h"
#include
"PhreeqcIO.h"
#include
"PhreeqcIOData/AqueousSolution.h"
#include
"PhreeqcIOData/CreateAqueousSolution.h"
...
...
@@ -24,13 +25,13 @@
namespace
ChemistryLib
{
std
::
unique_ptr
<
PhreeqcIO
>
createPhreeqcIO
(
std
::
size_t
const
num_nod
es
,
MeshLib
::
Mesh
const
&
m
es
h
,
std
::
vector
<
std
::
pair
<
int
,
std
::
string
>>
const
&
process_id_to_component_name_map
,
BaseLib
::
ConfigTree
const
&
config
,
std
::
string
const
&
output_directory
)
{
auto
const
&
num_chemical_systems
=
num_n
odes
;
auto
const
num_chemical_systems
=
mesh
.
getNumberOfBaseN
odes
()
;
// database
//! \ogs_file_param{prj__chemical_system__database}
...
...
@@ -88,18 +89,14 @@ std::unique_ptr<PhreeqcIO> createPhreeqcIO(
num_chemical_systems
,
aqueous_solution_per_chem_sys
);
// equilibrium phases
auto
const
equilibrium_phases
_per_chem_sys
=
createEquilibriumPhases
(
auto
equilibrium_phases
=
createEquilibriumPhases
(
//! \ogs_file_param{prj__chemical_system__equilibrium_phases}
config
.
getConfigSubtreeOptional
(
"equilibrium_phases"
));
std
::
vector
<
std
::
vector
<
EquilibriumPhase
>>
equilibrium_phases
(
num_chemical_systems
,
equilibrium_phases_per_chem_sys
);
config
.
getConfigSubtreeOptional
(
"equilibrium_phases"
),
mesh
);
// kinetic reactants
auto
const
kinetic_reactants
_per_chem_sys
=
createKineticReactants
(
auto
kinetic_reactants
=
createKineticReactants
(
//! \ogs_file_param{prj__chemical_system__kinetic_reactants}
config
.
getConfigSubtreeOptional
(
"kinetic_reactants"
));
std
::
vector
<
std
::
vector
<
KineticReactant
>>
kinetic_reactants
(
num_chemical_systems
,
kinetic_reactants_per_chem_sys
);
config
.
getConfigSubtreeOptional
(
"kinetic_reactants"
),
mesh
);
// rates
auto
reaction_rates
=
createReactionRates
(
...
...
This diff is collapsed.
Click to expand it.
ChemistryLib/CreatePhreeqcIO.h
+
6
−
1
View file @
d652be41
...
...
@@ -13,6 +13,11 @@
#include
"PhreeqcIO.h"
namespace
MeshLib
{
class
Mesh
;
}
namespace
BaseLib
{
class
ConfigTree
;
...
...
@@ -26,7 +31,7 @@ class Process;
namespace
ChemistryLib
{
std
::
unique_ptr
<
PhreeqcIO
>
createPhreeqcIO
(
std
::
size_t
const
num_nod
es
,
MeshLib
::
Mesh
const
&
m
es
h
,
std
::
vector
<
std
::
pair
<
int
,
std
::
string
>>
const
&
process_id_to_component_name_map
,
BaseLib
::
ConfigTree
const
&
config
,
...
...
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