forked from AMReX-Codes/amrex
-
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.
- Loading branch information
1 parent
ed71097
commit 25f4e2e
Showing
7 changed files
with
96 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
if (NOT AMReX_AMRLEVEL) | ||
return() | ||
endif () | ||
|
||
foreach(D IN LISTS AMReX_SPACEDIM) | ||
if (D EQUAL 1) | ||
continue() | ||
|
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
if (NOT AMReX_AMRLEVEL) | ||
return() | ||
endif () | ||
|
||
if (NOT 3 IN_LIST AMReX_SPACEDIM) | ||
return() | ||
endif () | ||
|
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 |
---|---|---|
@@ -1,26 +1,26 @@ | ||
|
||
# Domain size | ||
|
||
#nx = 32 # number of grid points along the x axis | ||
#ny = 32 # number of grid points along the y axis | ||
#nz = 32 # number of grid points along the z axis | ||
nx = 32 # number of grid points along the x axis | ||
ny = 32 # number of grid points along the y axis | ||
nz = 32 # number of grid points along the z axis | ||
|
||
#nx = 64 # number of grid points along the x axis | ||
#ny = 64 # number of grid points along the y axis | ||
#nz = 64 # number of grid points along the z axis | ||
|
||
nx = 128 # number of grid points along the x axis | ||
ny = 128 # number of grid points along the y axis | ||
nz = 128 # number of grid points along the z axis | ||
#nx = 128 # number of grid points along the x axis | ||
#ny = 128 # number of grid points along the y axis | ||
#nz = 128 # number of grid points along the z axis | ||
|
||
# Maximum allowable size of each subdomain in the problem domain; | ||
# this is used to decompose the domain for parallel calculations. | ||
max_grid_size = 32 | ||
max_grid_size = 16 | ||
|
||
# Number of particles per cell | ||
nppc = 10 | ||
nppc = 2 | ||
|
||
# Verbosity | ||
verbose = true # set to true to get more verbosity | ||
|
||
nlevs=2 | ||
nlevs=2 |