gel.scripts

All the functions associated with commands.

Command names and corresponding source files:

Some scripts in this module are only to be run from the FM-Track environment and their usage is specialized. These scripts include:

 1"""All the functions associated with commands.
 2
 3Command names and corresponding source files:
 4* forward: `gel.scripts.forward`
 5* inverse: `gel.scripts.inverse`
 6* downsample_mesh: `gel.scripts.downsample_mesh`
 7* get_u: `gel.scripts.get_u_from_gel_mesh`
 8* get_kinematics_mesh: `gel.scripts.full_shape_to_nodal`
 9* get_veh: `gel.scripts.get_veh`
10* create_cell_surf_normals_mesh: `gel.scripts.create_cell_surf_normals_mesh`
11
12Some scripts in this module are only to be run from the FM-Track
13environment and their usage is specialized. These scripts include:
14* `gel.scripts.get_displacement_from_gpr`
15* `gel.scripts.get_bc_vtks`
16"""
17from .forward import forward
18from .inverse import inverse
19from .downsample_mesh import downsample_mesh_main
20from .get_u_from_gel_mesh import get_u_main, get_exp_u_xdmf
21from .full_shape_to_nodal import get_kinematics_mesh
22from .get_veh import get_veh_main, get_veh
23from .get_displacement_from_gpr import get_u_from_gpr_main