-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprinting-process.html
More file actions
84 lines (82 loc) · 4.23 KB
/
printing-process.html
File metadata and controls
84 lines (82 loc) · 4.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Printing Process | Print-While-Drive</title>
<meta name="description" content="Project page for Print-While-Drive for robotic large-scale additive manufacturing." />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Source+Serif+4:wght@600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="site-header">
<div class="container nav">
<a class="brand" href="index.html">match · Print-While-Drive</a>
<nav>
<a href="index.html#video">Video</a>
<a href="index.html#chapters">Chapters</a>
<a href="index.html#gallery">Gallery</a>
<a href="paper.pdf">Paper</a>
<a href="https://github.com/match-ROS/match_additive_manufacturing" target="_blank" rel="noopener noreferrer">Code</a>
</nav>
</div>
</header>
<main>
<section class="chapter-hero container">
<a class="back-link" href="index.html">← Back to landing page</a>
<div class="subnav"><a href="printing-process.html" class="active">Printing Process</a><a href="trajectory-planning.html">Trajectory Planning</a><a href="trajectory-retiming.html">Trajectory Retiming</a><a href="robot-control.html">Robot Control</a><a href="evaluation.html">Evaluation</a></div>
<div class="chapter-layout" style="margin-top:18px;">
<div>
<div class="eyebrow">Chapter overview</div>
<h1>Printing Process</h1>
<p class="chapter-lead">
The printing process is based on a continuous two-component polyurethane (2K PU) foam deposition, where both material components are mixed directly within the nozzle and immediately extruded onto the substrate. The process enables rapid large-scale material deposition but imposes strict constraints on flow continuity, process stability, and robot motion.
</p>
<ul class="chapter-list">
<li>
The material is generated by in-nozzle mixing of two reactive components, which are driven by pressurized gas and require a minimum continuous flow to ensure proper mixing and avoid premature curing.
</li>
<li>
Due to the reactive nature of the material, any interruption in flow leads to rapid curing within the mixing chamber, resulting in nozzle clogging and requiring manual replacement.
</li>
<li>
The volumetric flow rate exhibits strong nonlinear behavior due to viscosity differences and pressure feedback from the expanding foam, making precise control challenging.
</li>
<li>
To ensure consistent strand geometry, a nearly constant tool center point (TCP) velocity is required, directly coupling the material process with the robot motion.
</li>
</ul>
</div>
<div class="asset-box">
<img src="assets/printing-process/IMG_0145.jpg"
alt="overview"
class="chapter-gif">
</div>
</div>
</section>
<section class="section container">
<div class="figure-grid">
<figure class="figure">
<img src="assets/printing-process/spray_overall.jpg" alt="Printing Process placeholder 1">
<figcaption>Two-component foam deposition process with in-nozzle mixing and continuous extrusion.</figcaption>
</figure>
<figure class="figure">
<img src="assets/printing-process/process2.png" alt="Printing Process placeholder 2">
<figcaption>Nozzle and end-effector design used for continuous material application and controlled strand formation.</figcaption>
</figure>
<figure class="figure">
<img src="assets/printing-process/DSC01183.jpg" alt="Printing Process placeholder 3">
<figcaption>Resulting foam strand geometry illustrating process sensitivity to flow rate and motion consistency.</figcaption>
</figure>
</div>
</section>
</main>
<footer>
<div class="container row">
<div class="small">Printing Process · Print-While-Drive project page</div>
</div>
</footer>
</body>
</html>