forked from GeodynamicWorldBuilder/WorldBuilder
-
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 fault edge limit grid tester for testing for issue GeodynamicWorl…
- Loading branch information
Showing
3 changed files
with
68 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# output variables | ||
grid_type = cartesian | ||
dim = 3 | ||
compositions = 4 | ||
|
||
# domain of the grid | ||
x_min = 5e3 | ||
x_max = 5.75e3 | ||
y_min = 2e3 | ||
y_max = 3e3 | ||
z_min = 0e3 | ||
z_max = 1.5e3 | ||
|
||
# grid properties | ||
n_cell_x = 50 | ||
n_cell_y = 50 | ||
n_cell_z = 50 |
Binary file not shown.
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,51 @@ | ||
{ | ||
"version":"0.6", | ||
"features": | ||
[ | ||
|
||
{"model":"continental plate","name":"quaternary","max depth":5e3, | ||
"coordinates":[[0,0],[8e3,0],[8e3,5e3],[0,5e3]], | ||
"temperature models":[{"model":"uniform","temperature":273}], | ||
"composition models": [ | ||
{"model":"uniform","max depth":5e3,"compositions":[2]}]}, | ||
|
||
{"model":"continental plate","name":"bedrock","max depth":5e3, | ||
"coordinates":[[8e3,0],[10e3,0],[10e3,5e3],[8e3,5e3]], | ||
"temperature models":[{"model":"uniform","temperature":273}], | ||
"composition models": [ | ||
{"model":"uniform","max depth":5e3,"compositions":[3]}]}, | ||
|
||
// {"model":"fault","name":"Strand_1","dip point":[-1000e6,25e2], | ||
// "coordinates":[ | ||
//[5700, 2200], | ||
//[5800, 2400] | ||
//], | ||
// "segments": | ||
// [ | ||
// {"length":5.7e3,"thickness":[50],"angle":[60]} | ||
// ], | ||
// "temperature models":[{"model":"uniform","temperature":273}], | ||
// "composition models": | ||
// [ | ||
// {"model":"uniform","compositions":[0]} | ||
// ] | ||
// } | ||
// , | ||
{"model":"subducting plate","name":"Strand_2","dip point":[-1000e6,25e2], | ||
"coordinates":[ | ||
[5700, 2600], | ||
[5600, 2800] | ||
], | ||
"segments": | ||
[ | ||
{"length":5.7e3,"thickness":[50],"angle":[60]} | ||
], | ||
"temperature models":[{"model":"uniform","temperature":273}], | ||
|
||
"composition models": | ||
[ | ||
{"model":"uniform","compositions":[0]} | ||
] | ||
} | ||
] | ||
} |