-
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.
* Add basic xgyro framework * Add full CGYRO simulation logic in, and fix xgyro paths * Add xgyro python wrapper * Write errors on stderr * Print sub-simulation info into out.xgyro.info * Fix xgyro dir creation from template, and add xgyro to top Makefile * Add regression support for xgyro * Add xgyro reg02 and reg03 * Add support for MPI_RANK_ORDER=2, add reg test
- Loading branch information
Showing
72 changed files
with
16,529 additions
and
22 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
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,27 @@ | ||
#---------------------------- | ||
# Toplevel makefile for xgyro | ||
#---------------------------- | ||
|
||
include ${GACODE_ROOT}/platform/build/make.inc.${GACODE_PLATFORM} | ||
|
||
export EXTRA_LIBS = \ | ||
${GACODE_ROOT}/cgyro/src/cgyro_lib.a \ | ||
${GACODE_ROOT}/f2py/expro/expro_lib.a \ | ||
${GACODE_ROOT}/f2py/geo/geo_lib.a \ | ||
${GACODE_ROOT}/shared/math/math_lib.a | ||
|
||
all: | ||
gacode_getversion > .VERSION | ||
cd ${GACODE_ROOT}/cgyro && make | ||
cd src && make | ||
|
||
clean: | ||
cd ${GACODE_ROOT}/modules && rm -f xgyro*.mod | ||
cd src && make clean | ||
|
||
deepclean: | ||
cd ${GACODE_ROOT}/cgyro && make deepclean | ||
cd ${GACODE_ROOT}/modules && rm -f xgyro*.mod | ||
cd src && make clean | ||
|
||
.IGNORE: |
Oops, something went wrong.