We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6f0df3 commit 5781ae5Copy full SHA for 5781ae5
src/compas_fd/fd/mesh_fd_constrained_numpy.py
@@ -5,13 +5,11 @@
5
from .fd_constrained_numpy import fd_constrained_numpy
6
7
8
-def mesh_fd_constrained_numpy(
9
- mesh: 'compas_fd.datastructures.CableMesh',
10
- kmax: int = 100,
11
- damping: float = 0.1,
12
- tol_res: float = 1e-3,
13
- tol_disp: float = 1e-3
14
- ) -> 'compas_fd.datastructures.CableMesh':
+def mesh_fd_constrained_numpy(mesh: 'compas_fd.datastructures.CableMesh',
+ kmax: int = 100,
+ damping: float = 0.1,
+ tol_res: float = 1e-3,
+ tol_disp: float = 1e-3) -> 'compas_fd.datastructures.CableMesh':
15
"""Iteratively find the equilibrium shape of a mesh for the given force densities.
16
17
Parameters
0 commit comments