-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from aurora-multiphysics/3-drive-ascot5-runs
Add ability to drive sequential ASCOT5 runs
- Loading branch information
Showing
41 changed files
with
1,300 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ascot5
updated
from a19f8e to 641a57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## Some build configurations specific to Phaethon | ||
# This file is automatically included by $(FRAMEWORK_DIR)/app.mk so it doesn't | ||
# need to be included in this project's Makefile | ||
|
||
# Additional libraries for HDF5 support | ||
ifdef CONDA_DEFAULT_ENV | ||
ADDITIONAL_LIBS += -lhdf5_hl_cpp -lhdf5_cpp -lhdf5_hl -lhdf5 | ||
else | ||
ADDITIONAL_INCLUDES += -I/usr/include/hdf5/serial | ||
ADDITIONAL_LIBS += -lhdf5_hl_cpp -lhdf5_cpp -lhdf5_serial_hl -lhdf5_serial | ||
endif | ||
|
||
# ASCOT5 | ||
ASCOT5_DIR := $(APPLICATION_DIR)/ascot5 | ||
ADDITIONAL_DEPEND_LIBS += libascot_main | ||
ADDITIONAL_LIBS += -Wl,-rpath=$(ASCOT5_DIR) -L$(ASCOT5_DIR) -lascot_main | ||
ADDITIONAL_INCLUDES += -I$(ASCOT5_DIR)/include | ||
ASCOT5_OPT := NOGIT=true CC=h5cc MPI=0 FLAGS=-foffload=disable | ||
|
||
libascot_main: | ||
$(MAKE) $(ASCOT5_OPT) -C $(ASCOT5_DIR) libascot_main |
Oops, something went wrong.