-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #109 from armantekinalp/108_contact_examples_and_f…
…ixes 108 contact examples and fixes
- Loading branch information
Showing
7 changed files
with
487 additions
and
0 deletions.
There are no files selected for viewing
158 changes: 158 additions & 0 deletions
158
examples/RigidBodyCases/RodRigidBodyContact/post_processing.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
import numpy as np | ||
from matplotlib import pyplot as plt | ||
|
||
|
||
def make_data_for_cylinder_along_y(cstart, cradius, cheight): | ||
center_x, center_z = cstart[0], cstart[1] | ||
y = np.linspace(0, cheight, 5) | ||
theta = np.linspace(0, 2 * np.pi, 20) | ||
theta_grid, y_grid = np.meshgrid(theta, y) | ||
x_grid = cradius * np.cos(theta_grid) + center_x | ||
z_grid = cradius * np.sin(theta_grid) + center_z | ||
y_grid += cstart[2] | ||
return [x_grid, y_grid, z_grid] | ||
|
||
|
||
def plot_video( | ||
rod_history: dict, | ||
cylinder_history: dict, | ||
video_name="video.mp4", | ||
margin=0.2, | ||
fps=60, | ||
step=1, | ||
*args, | ||
**kwargs | ||
): # (time step, x/y/z, node) | ||
|
||
cylinder_start = np.array(cylinder_history["position"])[0, ...] | ||
cylinder_radius = kwargs.get("cylinder_radius") | ||
cylinder_height = kwargs.get("cylinder_height") | ||
cylinder_direction = kwargs.get("cylinder_direction") | ||
|
||
XC, YC, ZC = make_data_for_cylinder_along_y( | ||
cylinder_start, cylinder_radius, cylinder_height | ||
) | ||
|
||
import matplotlib.animation as manimation | ||
|
||
plt.rcParams.update({"font.size": 22}) | ||
|
||
# Should give a (n_time, 3, n_elem) array | ||
positions = np.array(rod_history["position"]) | ||
# (n_time, 3) array | ||
com = np.array(rod_history["com"]) | ||
|
||
cylinder_com = np.array(cylinder_history["com"]) | ||
cylinder_origin = cylinder_com - 0.5 * cylinder_height * cylinder_direction | ||
|
||
print("plot video") | ||
FFMpegWriter = manimation.writers["ffmpeg"] | ||
metadata = dict(title="Movie Test", artist="Matplotlib", comment="Movie support!") | ||
writer = FFMpegWriter(fps=fps, metadata=metadata) | ||
dpi = 50 | ||
|
||
# min_limits = np.roll(np.array([0.0, -0.5 * cylinder_height, 0.0]), _roll_key) | ||
from mpl_toolkits.mplot3d import Axes3D | ||
|
||
fig = plt.figure(1, figsize=(10, 8), frameon=True, dpi=dpi) | ||
ax = plt.axes(projection="3d") # fig.add_subplot(111) | ||
ax.grid(b=True, which="minor", color="k", linestyle="--") | ||
ax.grid(b=True, which="major", color="k", linestyle="-") | ||
# plt.axis("square") | ||
i = 0 | ||
(rod_line,) = ax.plot(positions[i, 0], positions[i, 1], positions[i, 2], lw=3.0) | ||
XC, YC, ZC = make_data_for_cylinder_along_y( | ||
cylinder_origin[i, ...], cylinder_radius, cylinder_height | ||
) | ||
surf = ax.plot_surface(XC, YC, ZC, color="g", alpha=0.5) | ||
ax.set_xlabel("x") | ||
ax.set_ylabel("y") | ||
ax.set_zlabel("z") | ||
|
||
min_limits = np.array([0.0, 0.0, -0.5 * cylinder_height]) | ||
min_limits = -np.abs(min_limits) | ||
max_limits = min_limits + cylinder_height | ||
|
||
ax.set_xlim([min_limits[0], max_limits[0]]) | ||
ax.set_ylim([min_limits[1], max_limits[1]]) | ||
ax.set_zlim([min_limits[2], max_limits[2]]) | ||
with writer.saving(fig, video_name, dpi): | ||
with plt.style.context("seaborn-white"): | ||
for i in range(0, positions.shape[0], int(step)): | ||
rod_line.set_xdata(positions[i, 0]) | ||
rod_line.set_ydata(positions[i, 1]) | ||
rod_line.set_3d_properties(positions[i, 2]) | ||
XC, YC, ZC = make_data_for_cylinder_along_y( | ||
cylinder_origin[i, ...], cylinder_radius, cylinder_height | ||
) | ||
surf.remove() | ||
surf = ax.plot_surface(XC, YC, ZC, color="g", alpha=0.5) | ||
writer.grab_frame() | ||
|
||
from matplotlib.patches import Circle | ||
|
||
fig = plt.figure(2, figsize=(10, 8), frameon=True, dpi=dpi) | ||
ax = fig.add_subplot(111) | ||
i = 0 | ||
cstart = cylinder_origin | ||
(rod_line,) = ax.plot(positions[i, 0], positions[i, 1], lw=3.0) | ||
(tip_line,) = ax.plot(com[i, 0], com[i, 1], "k--") | ||
|
||
min_limits = np.array([0.0, 0.0, -0.5 * cylinder_height]) | ||
max_limits = min_limits + cylinder_height | ||
|
||
ax.set_xlim([min_limits[0], max_limits[0]]) | ||
ax.set_ylim([min_limits[2], max_limits[2]]) | ||
|
||
circle_artist = Circle((cstart[i, 0], cstart[i, 2]), cylinder_radius, color="g") | ||
ax.add_artist(circle_artist) | ||
ax.set_aspect("equal") | ||
video_name = "2D_" + video_name | ||
with writer.saving(fig, video_name, dpi): | ||
with plt.style.context("fivethirtyeight"): | ||
for i in range(0, positions.shape[0], int(step)): | ||
rod_line.set_xdata(positions[i, 0]) | ||
rod_line.set_ydata(positions[i, 2]) | ||
tip_line.set_xdata(com[:i, 0]) | ||
tip_line.set_ydata(com[:i, 2]) | ||
circle_artist.center = cstart[i, 0], cstart[i, 2] | ||
writer.grab_frame() | ||
|
||
|
||
def plot_cylinder_rod_position( | ||
rod_history, | ||
cylinder_history, | ||
cylinder_radius, | ||
rod_base_radius, | ||
TIP_COLLISION, | ||
TIP_CHOICE, | ||
_roll_key=0, | ||
): | ||
cylinder_start = np.array(cylinder_history["position"])[0, ...] | ||
positions = np.array(rod_history["position"]) | ||
sim_time = np.array(rod_history["time"]) | ||
|
||
n_elem = positions.shape[-1] | ||
|
||
fig = plt.figure(figsize=(10, 8), frameon=True, dpi=150) | ||
plt.rcParams.update({"font.size": 18}) | ||
ax = fig.add_subplot(111) | ||
colliding_element_idx = n_elem // 2 | ||
if TIP_COLLISION: | ||
colliding_element_idx = 0 if TIP_CHOICE == 1 else -1 | ||
colliding_element_history = positions[:, :, colliding_element_idx] | ||
# fig = plt.figure(3, figsize=(8, 5)) | ||
# ax = fig.add_subplot(111) | ||
ax.plot(sim_time, colliding_element_history[:, _roll_key], label="rod") | ||
ax.hlines( | ||
cylinder_start[_roll_key] - cylinder_radius - rod_base_radius, | ||
sim_time[0], | ||
sim_time[-1], | ||
"k", | ||
linestyle="dashed", | ||
label="cylinder", | ||
) | ||
plt.xlabel("Time [s]", fontsize=20) | ||
plt.ylabel("Position", fontsize=20) | ||
fig.legend(prop={"size": 20}) | ||
plt.show() |
174 changes: 174 additions & 0 deletions
174
examples/RigidBodyCases/RodRigidBodyContact/rod_cylinder_contact_validation.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
import numpy as np | ||
|
||
# FIXME without appending sys.path make it more generic | ||
import sys | ||
|
||
sys.path.append("../../../") | ||
from elastica import * | ||
from post_processing import plot_video, plot_cylinder_rod_position | ||
|
||
|
||
class SingleRodSingleCylinderInteractionSimulator( | ||
BaseSystemCollection, Constraints, Connections, Forcing, CallBacks | ||
): | ||
pass | ||
|
||
|
||
# Options | ||
PLOT_FIGURE = True | ||
|
||
single_rod_sim = SingleRodSingleCylinderInteractionSimulator() | ||
# setting up test params | ||
n_elem = 50 | ||
|
||
inclination = np.deg2rad(30) | ||
direction = np.array([0.0, np.cos(inclination), np.sin(inclination)]) | ||
normal = np.array([0.0, -np.sin(inclination), np.cos(inclination)]) | ||
|
||
# can be y or z too, meant for testing purposes of rod-body contact in different planes | ||
action_plane_key = "x" | ||
|
||
# can be set to True, checks collision at tips of rod | ||
TIP_COLLISION = True | ||
TIP_CHOICE = 1 | ||
|
||
_roll_key = 0 if action_plane_key == "x" else (1 if action_plane_key == "y" else 2) | ||
if action_plane_key == "x": | ||
global_rot_mat = np.eye(3) | ||
elif action_plane_key == "y": | ||
# Rotate +ve 90 about z | ||
global_rot_mat = np.zeros((3, 3)) | ||
global_rot_mat[0, 1] = -1.0 | ||
global_rot_mat[1, 0] = 1.0 | ||
global_rot_mat[2, 2] = 1.0 | ||
else: | ||
# Rotate -ve 90 abuot y | ||
global_rot_mat = np.zeros((3, 3)) | ||
global_rot_mat[1, 1] = 1.0 | ||
global_rot_mat[0, 2] = 1.0 | ||
global_rot_mat[2, 0] = 1.0 | ||
|
||
|
||
direction = global_rot_mat @ direction | ||
normal = global_rot_mat @ normal | ||
|
||
base_length = 0.5 | ||
base_radius = 0.01 | ||
base_area = np.pi * base_radius ** 2 | ||
density = 1750 | ||
nu = 0.001 | ||
E = 3e5 | ||
poisson_ratio = 0.5 | ||
shear_modulus = E / (1 + poisson_ratio) | ||
|
||
cylinder_start = global_rot_mat @ np.array([0.3, 0.0, 0.0]) | ||
cylinder_direction = global_rot_mat @ np.array([0.0, 0.0, 1.0]) | ||
cylinder_normal = global_rot_mat @ np.array([0.0, 1.0, 0.0]) | ||
|
||
cylinder_height = 0.4 | ||
cylinder_radius = 10.0 * base_radius | ||
|
||
# Cylinder surface starts at 0.2 | ||
tip_offset = 0.0 | ||
if TIP_COLLISION: | ||
# The random choice decides which tip of the rod intersects with cylinder | ||
TIP_CHOICE = np.random.choice([1, -1]) | ||
tip_offset = 0.5 * TIP_CHOICE * base_length * np.cos(inclination) | ||
|
||
start_rod_1 = np.array( | ||
[ | ||
0.15, | ||
-0.5 * base_length * np.cos(inclination) + tip_offset, | ||
0.5 * cylinder_height - 0.5 * base_length * np.sin(inclination), | ||
] | ||
) | ||
start_rod_1 = global_rot_mat @ start_rod_1 | ||
|
||
rod1 = CosseratRod.straight_rod( | ||
n_elem, | ||
start_rod_1, | ||
direction, | ||
normal, | ||
base_length, | ||
base_radius, | ||
density, | ||
nu, | ||
E, | ||
shear_modulus=shear_modulus, | ||
) | ||
# Give it an initial push | ||
rod1.velocity_collection[_roll_key, ...] = 0.05 | ||
single_rod_sim.append(rod1) | ||
|
||
|
||
cylinder = Cylinder( | ||
cylinder_start, | ||
cylinder_direction, | ||
cylinder_normal, | ||
cylinder_height, | ||
cylinder_radius, | ||
density, | ||
) | ||
single_rod_sim.append(cylinder) | ||
|
||
single_rod_sim.connect(rod1, cylinder).using(ExternalContact, 1e2, 0.1) | ||
|
||
|
||
# Add call backs | ||
class PositionCollector(CallBackBaseClass): | ||
""" | ||
Call back function for continuum snake | ||
""" | ||
|
||
def __init__(self, step_skip: int, callback_params: dict): | ||
CallBackBaseClass.__init__(self) | ||
self.every = step_skip | ||
self.callback_params = callback_params | ||
|
||
def make_callback(self, system, time, current_step: int): | ||
if current_step % self.every == 0: | ||
self.callback_params["time"].append(time) | ||
# Collect only x | ||
self.callback_params["position"].append(system.position_collection.copy()) | ||
self.callback_params["com"].append(system.compute_position_center_of_mass()) | ||
return | ||
|
||
|
||
recorded_rod_history = defaultdict(list) | ||
single_rod_sim.collect_diagnostics(rod1).using( | ||
PositionCollector, step_skip=200, callback_params=recorded_rod_history | ||
) | ||
recorded_cyl_history = defaultdict(list) | ||
single_rod_sim.collect_diagnostics(cylinder).using( | ||
PositionCollector, step_skip=200, callback_params=recorded_cyl_history | ||
) | ||
|
||
single_rod_sim.finalize() | ||
timestepper = PositionVerlet() | ||
final_time = 2.0 | ||
dl = base_length / n_elem | ||
dt = 1e-4 | ||
total_steps = int(final_time / dt) | ||
print("Total steps", total_steps) | ||
|
||
integrate(timestepper, single_rod_sim, final_time, total_steps) | ||
|
||
if PLOT_FIGURE: | ||
plot_video( | ||
recorded_rod_history, | ||
recorded_cyl_history, | ||
"cylinder_rod_collision.mp4", | ||
cylinder_direction=cylinder_direction, | ||
cylinder_height=cylinder_height, | ||
cylinder_radius=cylinder_radius, | ||
) | ||
|
||
plot_cylinder_rod_position( | ||
recorded_rod_history, | ||
recorded_cyl_history, | ||
cylinder_radius=cylinder_radius, | ||
rod_base_radius=base_radius, | ||
TIP_COLLISION=TIP_COLLISION, | ||
TIP_CHOICE=TIP_CHOICE, | ||
_roll_key=_roll_key, | ||
) |
Oops, something went wrong.