Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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
16 changes: 16 additions & 0 deletions .github/scripts/run_coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,12 @@ run_simple() {
# run
./run_this_example.sh
if [[ $? -ne 0 ]]; then exit 1; fi

# cleanup
mv -v DATA/Par_file.org DATA/Par_file
rm -rf OUTPUT_FILES/
if [ -e DATABASES_MPI ]; then rm -rf DATABASES_MPI/; fi

cd "$WORKDIR"
}

Expand All @@ -83,7 +88,13 @@ run_kernel() {
# run
./run_this_example_kernel.sh
if [[ $? -ne 0 ]]; then exit 1; fi

# cleanup
mv -v DATA/Par_file.org DATA/Par_file
rm -rf OUTPUT_FILES/
if [ -e DATABASES_MPI ]; then rm -rf DATABASES_MPI/; fi
if [ -e SEM ]; then rm -rf SEM/; fi

cd "$WORKDIR"
}

Expand Down Expand Up @@ -113,8 +124,13 @@ run_serial() {
# run
./run_this_example.sh
if [[ $? -ne 0 ]]; then exit 1; fi

# cleanup
mv -v DATA/Par_file.org DATA/Par_file
if [ -e DATA/meshfem3D_files/Mesh_Par_file.org ]; then mv -v DATA/meshfem3D_files/Mesh_Par_file.org DATA/meshfem3D_files/Mesh_Par_file; fi
rm -rf OUTPUT_FILES/
if [ -e DATABASES_MPI ]; then rm -rf DATABASES_MPI/; fi

cd "$WORKDIR"
}

Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ if [ -e DATA/Par_file ]; then
cp -v DATA/Par_file DATA/Par_file.bak
fi

# use kernel script
# runs simulation
if [ "${RUN_KERNEL}" == "true" ]; then
# use kernel script
./run_this_example_kernel.sh | tee output.log
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,8 @@ jobs:
# debug
#export I_MPI_DEBUG=5,pid,host
#export I_MPI_LIBRARY_KIND=debug
# remove -ftrapuv which leads to issues for running tests
sed -i "s/-ftrapuv//g" flags.guess
# remove -ftrapuv in case it leads to issues for running tests
#sed -i "s/-ftrapuv//g" flags.guess
# environment setting
export TERM=xterm
# export info
Expand All @@ -363,7 +363,7 @@ jobs:
- name: configure serial debug
run: |
set +e # revert the default `set -e`
./configure --enable-debug --without-mpi FC=ifx CC=icx
./configure --enable-debug --without-mpi FC=ifx CC=icx CXX=icx
if [[ $? -ne 0 ]]; then echo "configuration failed:"; cat config.log; echo ""; echo "exiting..."; exit 1; fi

- name: make serial debug
Expand All @@ -374,7 +374,7 @@ jobs:

- name: configure serial
run: |
./configure --without-mpi FC=ifx CC=icx
./configure --without-mpi FC=ifx CC=icx CXX=icx

- name: make serial
run: |
Expand All @@ -384,7 +384,8 @@ jobs:
- name: configure parallel debug
run: |
set +e # revert the default `set -e`
./configure --enable-debug --with-mpi FC=ifx CC=icx MPIFC=mpiifx MPI_INC="${I_MPI_ROOT}/include"
# adds -std=gnu17 to CFLAGS otherwise it will by default use -std=gnu23 which leads to errors in Scotch compilation
./configure --enable-debug --with-mpi FC=ifx CC=icx CXX=icx CFLAGS="-std=gnu17 -Wall" MPIFC=mpiifx MPI_INC="${I_MPI_ROOT}/include"
if [[ $? -ne 0 ]]; then echo "configuration failed:"; cat config.log; echo ""; echo "exiting..."; exit 1; fi

- name: make parallel debug
Expand All @@ -395,7 +396,7 @@ jobs:

- name: configure parallel
run: |
./configure --with-mpi FC=ifx CC=icx MPIFC=mpiifx MPI_INC="${I_MPI_ROOT}/include"
./configure --with-mpi FC=ifx CC=icx CXX=icx CFLAGS="-std=gnu17" MPIFC=mpiifx MPI_INC="${I_MPI_ROOT}/include"

- name: make parallel
run: |
Expand Down
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,3 @@ doc/USER_MANUAL/Schedule
.*swn
*~
*.pyc

# misc
.aider*

2 changes: 1 addition & 1 deletion DATA/Par_file
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ INVERSE_FWI_FULL_PROBLEM = .false.
# Use a negative zone number for the Southern hemisphere:
# The Northern hemisphere corresponds to zones +1 to +60,
# The Southern hemisphere corresponds to zones -1 to -60.
UTM_PROJECTION_ZONE = 33
UTM_PROJECTION_ZONE = 33
SUPPRESS_UTM_PROJECTION = .true.

# number of MPI processors
NPROC = 4
NPROC = 4

# time step parameters
NSTEP = 2000
Expand Down Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
2 changes: 1 addition & 1 deletion EXAMPLES/applications/Gmsh_simple_box_hex27/DATA/Par_file
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
2 changes: 1 addition & 1 deletion EXAMPLES/applications/Gmsh_simple_lddrk/DATA/Par_file
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
12 changes: 6 additions & 6 deletions EXAMPLES/applications/cmt_force_hybrid/DATA/Par_file
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,13 @@ USE_SOURCES_RECEIVERS_Z = .false.
# - the components of a (non necessarily unitary) direction vector for the force source in the E/N/Z_UP basis.
# The direction vector is made unitary internally in the code and thus only its direction matters here;
# its norm is ignored and the norm of the force used is the factor force source times the source time function.
USE_FORCE_POINT_SOURCE = .false.
USE_FORCE_POINT_SOURCE = .false.

# USE BOTH CMTSOLUTION AND FORCESOLUTION SOURCES
USE_CMT_AND_FORCE_SOURCE = .false.
USE_CMT_AND_FORCE_SOURCE = .false.

# BINARY SOURCE FILE, can handle millions of sources with different source time functions
USE_BINARY_SOURCE_FILE = .false.
USE_BINARY_SOURCE_FILE = .false.

# set to true to use a Ricker source time function instead of the source time functions set by default
# to represent a (tilted) FORCESOLUTION force point source or a CMTSOLUTION moment-tensor source.
Expand All @@ -208,7 +208,7 @@ USE_RICKER_TIME_FUNCTION = .false.
# This file must have a single column containing the amplitudes of the source at all time steps;
# time step size used must be equal to DT as defined at the beginning of this Par_file.
# Be sure when this option is .false. to remove the name of stf file in CMTSOLUTION or FORCESOLUTION
USE_EXTERNAL_SOURCE_FILE = .true.
USE_EXTERNAL_SOURCE_FILE = .true.

# print source time function
PRINT_SOURCE_TIME_FUNCTION = .false.
Expand Down Expand Up @@ -324,7 +324,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down Expand Up @@ -386,7 +386,7 @@ BROADCAST_SAME_MESH_AND_MODEL = .false.
#-----------------------------------------------------------

# set to true to use GPUs
GPU_MODE = .TRUE.
GPU_MODE = .TRUE.

# ADIOS Options for I/Os
ADIOS_ENABLED = .false.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
2 changes: 1 addition & 1 deletion EXAMPLES/applications/decompose_mesh_MPI/DATA/Par_file
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
2 changes: 1 addition & 1 deletion EXAMPLES/applications/fault_examples/tpv102/DATA/Par_file
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
2 changes: 1 addition & 1 deletion EXAMPLES/applications/fault_examples/tpv103/DATA/Par_file
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
2 changes: 1 addition & 1 deletion EXAMPLES/applications/fault_examples/tpv15/DATA/Par_file
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
2 changes: 1 addition & 1 deletion EXAMPLES/applications/fault_examples/tpv16/DATA/Par_file
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
2 changes: 1 addition & 1 deletion EXAMPLES/applications/fault_examples/tpv5/DATA/Par_file
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
2 changes: 1 addition & 1 deletion EXAMPLES/applications/homogeneous_acoustic/DATA/Par_file
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ SAVE_MOHO_MESH = .false.
#
#-----------------------------------------------------------
COUPLE_WITH_INJECTION_TECHNIQUE = .false.
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK
INJECTION_TECHNIQUE_TYPE = 3 # 1 = DSM, 2 = AxiSEM, 3 = FK, 4 = SPECFEM
MESH_A_CHUNK_OF_THE_EARTH = .false.
TRACTION_PATH = ./DATA/AxiSEM_tractions/3/
FKMODEL_FILE = FKmodel
Expand Down
Loading
Loading