-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved parameter values to parameter file
- Loading branch information
kirill-menke
committed
Jun 30, 2021
1 parent
2cdf2d5
commit ed0b693
Showing
3 changed files
with
45 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,30 @@ | ||
particle_num 512 | ||
timestep 0.001 | ||
threads_per_group 64 | ||
integrator euler | ||
boundary_damping 0.8 | ||
particle_radius 1.0 | ||
particle_num 512 | ||
timestep 0.001 | ||
|
||
integrator euler | ||
|
||
h 3.0 | ||
|
||
k 0.01 | ||
p0 1.0 | ||
e 0.02 | ||
s 0.1 | ||
mass 1.0 | ||
g -9.81 | ||
|
||
boundary_damping 0.8 | ||
min_box_x -10.0 | ||
min_box_y -0.0 | ||
min_box_z -10.0 | ||
max_box_x 10.0 | ||
max_box_y 20.0 | ||
max_box_z 10.0 | ||
|
||
threads_per_group 128 | ||
|
||
spawn_dist 2.0 | ||
spawn_off_x 0.0 | ||
spawn_off_y 10.0 | ||
spawn_off_z 0.0 | ||
|
||
particle_radius 1.0 |