Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KPP Standalone from Obin Sturm #2483

Merged
merged 5 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "KPP/standalone"]
path = KPP/standalone
url = https://github.com/geoschem/KPP-Standalone
branch = geoschem-dev
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## [Unreleased] - TBD
### Added
- Added KPP standalone interface (archives model state to selected locations)
- Added `https://github/geoschem/KPP-Standalone` as a Git submodule (`geoschem-dev` branch)

### Changed
- Moved PINO3H to be in alphabetical order in `species_database.yml`
Expand Down
9 changes: 6 additions & 3 deletions KPP/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# KPP/CMakeLists.txt

#-----------------------------------------------------------------------------
# Build the fullchem mechanism if configured with -DMECH=fullchem
# (This is the default option)
# Build the fullchem mechanism and the KPP standalone executable
# if configured with -DMECH=fullchem (This is the default option)
#-----------------------------------------------------------------------------
if("${MECH}" STREQUAL fullchem)
add_subdirectory(fullchem)
add_subdirectory(standalone)
endif()

#-----------------------------------------------------------------------------
Expand All @@ -16,10 +17,12 @@ if("${MECH}" STREQUAL carbon)
endif()

#-----------------------------------------------------------------------------
# Build the custom mechanism if configured with -DMECH=custom
# Build the custom mechanism and the KPP standalone executable
# if configured with -DMECH=custom
#-----------------------------------------------------------------------------
if("${MECH}" STREQUAL custom)
add_subdirectory(custom)
add_subdirectory(standalone)
endif()

#-----------------------------------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions KPP/standalone
Submodule standalone added at 2e56d7