Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fluidparticles
MigFlow
Commits
a96d9865
Commit
a96d9865
authored
Mar 16, 2021
by
Jonathan Lambrechts
Browse files
honour max_nusb parameter even without split
parent
2edd1f7d
Pipeline
#9161
failed with stages
in 2 minutes and 47 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
python/time_integration.py
View file @
a96d9865
...
...
@@ -42,6 +42,7 @@ def _advance_particles(particles, f, dt, min_nsub,contact_tol,max_nsub=None,afte
vn
=
v
+
f
*
dt
/
particles
.
mass
()
vmax
=
np
.
max
(
np
.
linalg
.
norm
(
vn
,
axis
=
1
))
nsub
=
max
(
min_nsub
,
int
(
np
.
ceil
((
vmax
*
dt
*
8
)
/
min
(
particles
.
r
()))))
nsub
=
min
(
max_nsub
,
nsub
)
else
:
nsub
=
1
vmax
=
0
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment