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
e15a66b8
Commit
e15a66b8
authored
Sep 28, 2021
by
Nathan Coppin
Browse files
Update time_integration.py
parent
3193e0f6
Pipeline
#9744
passed with stages
in 3 minutes and 53 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
python/time_integration.py
View file @
e15a66b8
...
...
@@ -42,8 +42,8 @@ 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
()))))
if
max_nsub
is
not
None
:
nsub
=
min
(
max_nsub
,
nsub
)
#
if max_nsub is not None :
#
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