Skip to content
Draft
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
186 changes: 0 additions & 186 deletions .github/workflows/ci.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .github/workflows/deploy_documentation.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CADET
CADET (my version)
======

.. image:: https://img.shields.io/github/release/modsim/cadet.svg
Expand Down
6 changes: 6 additions & 0 deletions src/libcadet/BindingModelFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ namespace cadet
void registerBiLangmuirLDFModel(std::unordered_map<std::string, std::function<model::IBindingModel* ()>>& bindings);
void registerHICWaterOnHydrophobicSurfacesModel(std::unordered_map<std::string, std::function<model::IBindingModel*()>>& bindings);
void registerHICConstantWaterActivityModel(std::unordered_map<std::string, std::function<model::IBindingModel*()>>& bindings);
void registerTestModel(std::unordered_map<std::string, std::function<model::IBindingModel* ()>>& bindings);
void registerTestStericMassActionModel(std::unordered_map<std::string, std::function<model::IBindingModel* ()>>& bindings);
void registerLangmuirHybridDesorbModel(std::unordered_map<std::string, std::function<model::IBindingModel* ()>>& bindings);
}
}

Expand Down Expand Up @@ -73,6 +76,9 @@ namespace cadet
model::binding::registerBiLangmuirLDFModel(_bindingModels);
model::binding::registerHICWaterOnHydrophobicSurfacesModel(_bindingModels);
model::binding::registerHICConstantWaterActivityModel(_bindingModels);
model::binding::registerTestModel(_bindingModels);
model::binding::registerTestStericMassActionModel(_bindingModels);
model::binding::registerLangmuirHybridDesorbModel(_bindingModels);
registerModel<model::SimplifiedMultiStateStericMassActionBinding>();
}

Expand Down
3 changes: 3 additions & 0 deletions src/libcadet/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ set(LIBCADET_BINDINGMODEL_SOURCES
${CMAKE_SOURCE_DIR}/src/libcadet/model/binding/BiLangmuirLDFBinding.cpp
${CMAKE_SOURCE_DIR}/src/libcadet/model/binding/HICWaterOnHydrophobicSurfacesBinding.cpp
${CMAKE_SOURCE_DIR}/src/libcadet/model/binding/HICConstantWaterActivityBinding.cpp
${CMAKE_SOURCE_DIR}/src/libcadet/model/binding/TestBinding.cpp
${CMAKE_SOURCE_DIR}/src/libcadet/model/binding/TestStericMassActionBinding.cpp
${CMAKE_SOURCE_DIR}/src/libcadet/model/binding/LangmuirHybridDesorbBinding.cpp
)

# LIBCADET_REACTIONMODEL_SOURCES holds all source files of reaction models
Expand Down
Loading