Closed adigitoleo closed 7 months ago
At the moment, for the third arg it accepts a callable with signature L(t) but really it should be accepting L(t, x) since the velocity gradient L can change with both position and time.
L(t)
L(t, x)
L
Places where the API needs to be fixed:
velocity.py
test_simple_shear_2d.py
test_vortex_2d.py
test_corner_flow_2d.py
test_simple_shear_3d.py
minerals.py
pathlines.py
visualisation.py
Also change every velocity callable to use u(t, x) as well.
u(t, x)
At the moment, for the third arg it accepts a callable with signature
L(t)
but really it should be acceptingL(t, x)
since the velocity gradientL
can change with both position and time.Places where the API needs to be fixed:
velocity.py
test_simple_shear_2d.py
test_vortex_2d.py
test_corner_flow_2d.py
test_simple_shear_3d.py
minerals.py
pathlines.py
visualisation.py