https://gitlab.opengeosys.org/ogs/ogs.git
Revision 51776d6c14a467757f2c52e4dd1c750d40472391 authored by Dmitry Yu. Naumov on 09 July 2021, 07:29:27 UTC, committed by Dmitry Yu. Naumov on 09 July 2021, 07:29:27 UTC
[CL] Use MPL to input amounts of ion exchanging species

This MR enables using the MPL to input the amounts (or molalities) of ion exchanging species as opposed to defining these quantities inside the `<chemical_system>` tag, which is what is currently possible.

This MR partially resolves issue #3164 (after this, more MRs will be added to fully resolve the issue).

1. [x] Feature description was added to the [changelog](https://gitlab.opengeosys.org/ogs/ogs/-/wikis/Release-notes-6.4.1)
2. [x] Tests covering your feature were added?
3. [ ] Any new feature or behavior change was documented?

See merge request ogs/ogs!3695
2 parent s 08e6faf + 31dc566
Raw File
Tip revision: 51776d6c14a467757f2c52e4dd1c750d40472391 authored by Dmitry Yu. Naumov on 09 July 2021, 07:29:27 UTC
Merge branch 'MoveExchangeToMPL' into 'master'
Tip revision: 51776d6
config-cpp-dependencies.txt
# Configuration file for cpp-dependencies
# This is the example file that has all the default values listed.

# Version that was current when this configuration file was written
# Used to prevent a newer version with possibly incompatible generation from overwriting
# cmakefiles automatically.
versionUsed: 2

# Company name to use in generated CMakeLists' copyright statement.
companyName: OpenGeoSys Community (www.opengeosys.org)

# Tag used in generated CMakeLists. Don't change unless you also update your CMakeLists.
regenTag: GENERATED BY CPP-DEPENDENCIES


# The next three items describe colors that will appear in the output graphs. Ensure you
# use colors that the tools you will be using on the graphs understand.

# Color used for cycles in the generated graphs
cycleColor: red

# Color used for public dependencies in the generated graphs
publicDepColor: blue

# Color used for private dependencies in the generated graphs
privateDepColor: lightblue


# Upper bound for the amount of outgoing component links from a single component.
componentLinkLimit: 30

# Lower bound for amount of code in a single component. Used to flag "empty" components.
componentLocLowerLimit: 200

# Upper bound for amount of code in a single component. Used to flag oversized components,
# which typically harbor god class like behaviour, and hold multiple responsibilities.
componentLocUpperLimit: 20000

# Upper bound for file size. Large files are hard to understand and often contain multiple
# logical units, which are then easy to mix up and conflate.
fileLocUpperLimit: 2000

# List of folder paths (from the root) that should be completely ignored. May contain multiple
# space-separated values, including values with spaces escaped with quotation marks.
blacklist: build Build "Visual Studio Projects" unistd.h console.h stdint.h windows.h library.h endian.h rle.h Applications/Utils SimpleTests ThirdParty
back to top