<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Traveling Waves | Morpheus</title><link>https://morpheus.gitlab.io/tag/traveling-waves/</link><atom:link href="https://morpheus.gitlab.io/tag/traveling-waves/index.xml" rel="self" type="application/rss+xml"/><description>Traveling Waves</description><generator>Wowchemy (https://wowchemy.com)</generator><language>en-us</language><copyright>© 2026 [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) Morpheus.Lab @ TUD Dresden University of Technology | [Legal Notice](https://imc.zih.tu-dresden.de/imc/index.php?page=impressum)</copyright><lastBuildDate>Wed, 22 Jul 2026 08:46:09 -0700</lastBuildDate><image><url>https://morpheus.gitlab.io/media/sharing.image.png</url><title>Traveling Waves</title><link>https://morpheus.gitlab.io/tag/traveling-waves/</link></image><item><title>How Negative Feedback from Filamentous Actin Affects Cell Shapes and Motility</title><link>https://morpheus.gitlab.io/model/m2074/</link><pubDate>Wed, 22 Jul 2026 08:46:09 -0700</pubDate><guid>https://morpheus.gitlab.io/model/m2074/</guid><description>&lt;blockquote>
Exploring cell shapes, motility, and transitions using numerical PDE bifurcation analysis and Morpheus CPM simulations
&lt;/blockquote>
&lt;h2 id="introduction">Introduction&lt;/h2>
&lt;p>The crawling motility of many eukaryotic cells is driven by filamentous actin (F-actin), and regulated by a complex signaling network of small GTPases. The feedbacks between active GTPase, which recruits actin-polymerization machinery, and F-actin, which can recruit GAPs that in turn inactivate the GTPase, give rise to dynamic patterns known as ‘actin waves’.&lt;/p>
&lt;p>This model suite explores how cell shapes and motility are regulated by the negative feedback rate ($s$) and the cell perimeter ($L$) of a mass-conserved reaction-diffusion partial differential equation (PDE) model. Guided by numerical PDE bifurcation analysis, we couple the reaction-diffusion equations on the 1D cell perimeter to a 2D Cellular Potts model (CPM) to simulate various cell states, including directed motion, edge-ruffling, wobbly oscillations, back-and-forth turning, and random amoeboid-like motility.&lt;/p>
&lt;div id="fig-1">
&lt;figure id="figure-figure-1-bifurcation-diagram-for-cell-perimeter-l--3lambda-showing-the-existence-and-stability-of-polar-and-traveling-wave-solutions-as-a-function-of-the-negative-feedback-parameter-s-shaded-regions-mark-the-parameter-regimes-for-directed-polarization-yellow-ruffling-purple-turning-brown-and-their-co-existence-orange-and-red-that-govern-the-shapes-and-motion-of-simulated-cells">
&lt;div class="d-flex justify-content-center">
&lt;div class="w-100" >&lt;img alt="**Figure 1.** Bifurcation diagram for cell perimeter $L = 3\lambda$ showing the existence and stability of polar and traveling wave solutions as a function of the negative feedback parameter $s$. Shaded regions mark the parameter regimes for directed polarization (yellow), ruffling (purple), turning (brown), and their co-existence (orange and red) that govern the shapes and motion of simulated cells." srcset="
/media/model/m2074/Fig5_hu172253221ed0f5b74a14e9b15d0ec148_33206_18720ae8ed9ce938110dbd584a80b916.png 400w,
/media/model/m2074/Fig5_hu172253221ed0f5b74a14e9b15d0ec148_33206_929ed31f3c9aa94e9e4ac0e62d9aaa1f.png 760w,
/media/model/m2074/Fig5_hu172253221ed0f5b74a14e9b15d0ec148_33206_1200x1200_fit_lanczos_3.png 1200w"
src="https://morpheus.gitlab.io/media/model/m2074/Fig5_hu172253221ed0f5b74a14e9b15d0ec148_33206_18720ae8ed9ce938110dbd584a80b916.png"
width="624"
height="288"
loading="lazy" data-zoomable />&lt;/div>
&lt;/div>&lt;figcaption>
&lt;strong>Figure 1.&lt;/strong> Bifurcation diagram for cell perimeter $L = 3\lambda$ showing the existence and stability of polar and traveling wave solutions as a function of the negative feedback parameter $s$. Shaded regions mark the parameter regimes for directed polarization (yellow), ruffling (purple), turning (brown), and their co-existence (orange and red) that govern the shapes and motion of simulated cells.
&lt;/figcaption>&lt;/figure>
&lt;/div>
&lt;h2 id="reproducibility-of-article-figures">Reproducibility of Article Figures&lt;/h2>
&lt;p>The Morpheus XML files for each of these models are provided directly on this page for simulation in the Morpheus GUI. For the complete computational pipeline, including Python analysis scripts, Jupyter notebooks, and the raw simulated cell trajectory data, please visit the &lt;a href="https://gitlab.com/jupiteralgorta/f-actin-on-cell-motility/" target="_blank" rel="noopener">GitLab repository&lt;/a>.&lt;/p>
&lt;h2 id="mathematical-model">Mathematical Model&lt;/h2>
&lt;p>We model the cell perimeter as a 1D membrane domain where active GTPase ($u$), inactive GTPase ($v$), and filamentous actin ($F$) evolve under reaction-diffusion dynamics:&lt;/p>
&lt;p>$$
\frac{\partial u}{\partial t} = (b + \gamma u^2) v - (1 + u^2 + s F) u + D_u \frac{\partial^2 u}{\partial x^2}
$$&lt;/p>
&lt;p>$$
\frac{\partial v}{\partial t} = -(b + \gamma u^2) v + (1 + u^2 + s F) u + D_v \frac{\partial^2 v}{\partial x^2}
$$&lt;/p>
&lt;p>$$
\frac{\partial F}{\partial t} = \epsilon (p_0 + p_1 u - F) + D_F \frac{\partial^2 F}{\partial x^2}
$$&lt;/p>
&lt;p>Where:&lt;/p>
&lt;ul>
&lt;li>$u$ represents the active form of a GTPase (e.g. RhoA or Rac) bound to the membrane.&lt;/li>
&lt;li>$v$ represents the inactive cytosolic form.&lt;/li>
&lt;li>$F$ represents the F-actin downstream effector.&lt;/li>
&lt;li>$s$ is the F-actin-dependent GTPase inactivation rate (negative feedback rate).&lt;/li>
&lt;li>$b$ and $\gamma$ represent basal and auto-activation rates respectively.&lt;/li>
&lt;li>$\epsilon$, $p_0$, and $p_1$ govern F-actin assembly and disassembly rates.&lt;/li>
&lt;li>$D_u$, $D_v$, and $D_F$ are the respective diffusion coefficients on the cell perimeter.&lt;/li>
&lt;/ul>
&lt;p>The local value of F-actin ($F$) along the cell boundary is coupled to the CPM, favoring local membrane protrusions where $F$ is high, driving cell deformation and motility.&lt;/p>
&lt;h2 id="motility-phenotypes-and-simulations">Motility Phenotypes and Simulations&lt;/h2>
&lt;div class="alert alert-note">
&lt;div>
&lt;strong>Note:&lt;/strong> All figures and simulation configurations on this page are reproduced or adapted from the original publication (&lt;a href="#reference">Hughes &lt;em>et al.&lt;/em>, 2026&lt;/a>).
&lt;/div>
&lt;/div>
&lt;h3 id="1-polar-cells-directed-migration">1. Polar Cells (Directed Migration)&lt;/h3>
&lt;p>When parameter values lie on the stable unipolar branch, the cell maintains a single, stable peak of active GTPase. This concentrates F-actin at the cell front and drives persistent, directed migration.&lt;/p>
&lt;ul>
&lt;li>&lt;strong>Simulation files&lt;/strong>: &lt;span style="white-space: nowrap;">&lt;code>polar_s_0.376.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/polar_s_0.376.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/polar_s_0.376.xml" title="Download XML file" data-bs-toggle="tooltip" download="polar_s_0.376.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>, &lt;span style="white-space: nowrap;">&lt;code>polar_s_0.475.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/polar_s_0.475.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/polar_s_0.475.xml" title="Download XML file" data-bs-toggle="tooltip" download="polar_s_0.475.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>, &lt;span style="white-space: nowrap;">&lt;code>polar_s_0.519.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/polar_s_0.519.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/polar_s_0.519.xml" title="Download XML file" data-bs-toggle="tooltip" download="polar_s_0.519.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>&lt;/li>
&lt;li>&lt;strong>Key behavior&lt;/strong>: As $s$ increases, the GTPase zone at the front narrows and active GTPase becomes more highly concentrated, increasing F-actin levels and propelling the cell faster (&lt;a href="#fig-2">Figure 2&lt;/a>).&lt;/li>
&lt;/ul>
&lt;div id="fig-2">
&lt;figure id="figure-figure-2-shapes-and-trajectories-of-polar-cells-on-the-unipolar-branch-l--3lambda-as-the-negative-feedback-rate-s-increases-s--0376-0475-0519-the-active-gtpase-zone-narrows-concentrating-active-protein-at-the-front-this-drives-higher-f-actin-polymerization-and-faster-cell-speed-causing-shapes-to-transition-from-canoe-like-to-d-like-keratocyte-forms">
&lt;div class="d-flex justify-content-center">
&lt;div class="w-100" >&lt;img alt="**Figure 2.** Shapes and trajectories of polar cells on the unipolar branch ($L = 3\lambda$). As the negative feedback rate $s$ increases ($s = 0.376, 0.475, 0.519$), the active GTPase zone narrows, concentrating active protein at the front. This drives higher F-actin polymerization and faster cell speed, causing shapes to transition from canoe-like to D-like keratocyte forms." srcset="
/media/model/m2074/Fig7_hu1439ec059b7f4c7abd4dda7258e2caa7_1627444_9f4ebed8a6826c1914a49ed22d2b1ed4.png 400w,
/media/model/m2074/Fig7_hu1439ec059b7f4c7abd4dda7258e2caa7_1627444_478d011d665a804163f275a5cf61eca0.png 760w,
/media/model/m2074/Fig7_hu1439ec059b7f4c7abd4dda7258e2caa7_1627444_1200x1200_fit_lanczos_3.png 1200w"
src="https://morpheus.gitlab.io/media/model/m2074/Fig7_hu1439ec059b7f4c7abd4dda7258e2caa7_1627444_9f4ebed8a6826c1914a49ed22d2b1ed4.png"
width="760"
height="478"
loading="lazy" data-zoomable />&lt;/div>
&lt;/div>&lt;figcaption>
&lt;strong>Figure 2.&lt;/strong> Shapes and trajectories of polar cells on the unipolar branch ($L = 3\lambda$). As the negative feedback rate $s$ increases ($s = 0.376, 0.475, 0.519$), the active GTPase zone narrows, concentrating active protein at the front. This drives higher F-actin polymerization and faster cell speed, causing shapes to transition from canoe-like to D-like keratocyte forms.
&lt;/figcaption>&lt;/figure>
&lt;/div>
&lt;h3 id="2-edge-ruffling-cells-3-traveling-waves">2. Edge-Ruffling Cells (3 Traveling Waves)&lt;/h3>
&lt;p>Along the traveling wave branch, multiple peaks can propagate along the perimeter.&lt;/p>
&lt;ul>
&lt;li>&lt;strong>Simulation files&lt;/strong>: &lt;span style="white-space: nowrap;">&lt;code>tw_s_0.413.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/tw_s_0.413.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/tw_s_0.413.xml" title="Download XML file" data-bs-toggle="tooltip" download="tw_s_0.413.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>, &lt;span style="white-space: nowrap;">&lt;code>tw_s_0.475.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/tw_s_0.475.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/tw_s_0.475.xml" title="Download XML file" data-bs-toggle="tooltip" download="tw_s_0.475.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>, &lt;span style="white-space: nowrap;">&lt;code>tw_s_0.607.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/tw_s_0.607.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/tw_s_0.607.xml" title="Download XML file" data-bs-toggle="tooltip" download="tw_s_0.607.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>&lt;/li>
&lt;li>&lt;strong>Key behavior&lt;/strong>: The cell perimeter supports three traveling waves, creating three competing protrusions. Because the forces pull in opposite directions, the cell undergoes no directed migration, displaying a ruffling phenotype.&lt;/li>
&lt;/ul>
&lt;div id="fig-3">
&lt;figure id="figure-figure-3-edge-ruffling-3tw-cell-motility-along-the-traveling-wave-branch-l--3lambda-for-parameter-values-s--0413-0475-0607-the-cell-boundary-supports-three-competing-traveling-waves-the-resulting-protrusions-pull-in-opposite-directions-preventing-directed-migration-and-yielding-a-stationary-ruffling-phenotype">
&lt;div class="d-flex justify-content-center">
&lt;div class="w-100" >&lt;img alt="**Figure 3.** Edge-ruffling (3TW) cell motility along the traveling wave branch ($L = 3\lambda$). For parameter values $s = 0.413, 0.475, 0.607$, the cell boundary supports three competing traveling waves. The resulting protrusions pull in opposite directions, preventing directed migration and yielding a stationary ruffling phenotype." srcset="
/media/model/m2074/Fig8_hu37f38e5ac3e1e3ed2ccb180a4db8f3a5_2132431_e1da1d5b5037549c3efd795a2cd1212d.png 400w,
/media/model/m2074/Fig8_hu37f38e5ac3e1e3ed2ccb180a4db8f3a5_2132431_d25e8619bec2644441aeae1f7098aa1d.png 760w,
/media/model/m2074/Fig8_hu37f38e5ac3e1e3ed2ccb180a4db8f3a5_2132431_1200x1200_fit_lanczos_3.png 1200w"
src="https://morpheus.gitlab.io/media/model/m2074/Fig8_hu37f38e5ac3e1e3ed2ccb180a4db8f3a5_2132431_e1da1d5b5037549c3efd795a2cd1212d.png"
width="760"
height="478"
loading="lazy" data-zoomable />&lt;/div>
&lt;/div>&lt;figcaption>
&lt;strong>Figure 3.&lt;/strong> Edge-ruffling (3TW) cell motility along the traveling wave branch ($L = 3\lambda$). For parameter values $s = 0.413, 0.475, 0.607$, the cell boundary supports three competing traveling waves. The resulting protrusions pull in opposite directions, preventing directed migration and yielding a stationary ruffling phenotype.
&lt;/figcaption>&lt;/figure>
&lt;/div>
&lt;h3 id="3-destabilized-polar-cells-wobbly-motion">3. Destabilized Polar Cells (Wobbly Motion)&lt;/h3>
&lt;p>Just after the onset of polar pattern instability, the spatial pattern of GTPase oscillates periodically.&lt;/p>
&lt;ul>
&lt;li>&lt;strong>Simulation file&lt;/strong>: &lt;span style="white-space: nowrap;">&lt;code>Wobby_s_0.600.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/Wobby_s_0.600.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/Wobby_s_0.600.xml" title="Download XML file" data-bs-toggle="tooltip" download="Wobby_s_0.600.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span> (s = 0.54)&lt;/li>
&lt;li>&lt;strong>Key behavior&lt;/strong>: The active GTPase zone remains localized in one direction, maintaining directed motion, but oscillates in shape and concentration. This causes the cell shape to shift periodically between oval, D-like, and kidney shapes, and its migration speed fluctuates (&lt;a href="#fig-4">Figure 4&lt;/a>).&lt;/li>
&lt;/ul>
&lt;div id="fig-4">
&lt;figure id="figure-figure-4-destabilized-polar-cells-exhibiting-wobbly-motion-at-s--054-after-the-onset-of-polar-pattern-instability-while-the-active-gtpase-zone-remains-localized-in-one-direction-to-maintain-directed-migration-the-shape-oscillates-periodically-between-d-like-oval-and-kidney-like-forms-accompanied-by-speed-oscillations">
&lt;div class="d-flex justify-content-center">
&lt;div class="w-100" >&lt;img alt="**Figure 4.** Destabilized polar cells exhibiting wobbly motion at $s = 0.54$, after the onset of polar pattern instability. While the active GTPase zone remains localized in one direction to maintain directed migration, the shape oscillates periodically between D-like, oval, and kidney-like forms, accompanied by speed oscillations." srcset="
/media/model/m2074/Fig9_hu0b73548689efc1f7b6ce8c9620477ccc_501773_27e8b5c804df34fd88d2f9cb8c7b7f07.png 400w,
/media/model/m2074/Fig9_hu0b73548689efc1f7b6ce8c9620477ccc_501773_586bccf662e598e5409e137b6df6e4e2.png 760w,
/media/model/m2074/Fig9_hu0b73548689efc1f7b6ce8c9620477ccc_501773_1200x1200_fit_lanczos_3.png 1200w"
src="https://morpheus.gitlab.io/media/model/m2074/Fig9_hu0b73548689efc1f7b6ce8c9620477ccc_501773_27e8b5c804df34fd88d2f9cb8c7b7f07.png"
width="760"
height="571"
loading="lazy" data-zoomable />&lt;/div>
&lt;/div>&lt;figcaption>
&lt;strong>Figure 4.&lt;/strong> Destabilized polar cells exhibiting wobbly motion at $s = 0.54$, after the onset of polar pattern instability. While the active GTPase zone remains localized in one direction to maintain directed migration, the shape oscillates periodically between D-like, oval, and kidney-like forms, accompanied by speed oscillations.
&lt;/figcaption>&lt;/figure>
&lt;/div>
&lt;h3 id="4-coexisting-motility-modes--exotic-trajectories">4. Coexisting Motility Modes &amp;amp; Exotic Trajectories&lt;/h3>
&lt;p>For smaller cells ($L = 2\lambda$), multiple modes can coexist and interact dynamically.&lt;/p>
&lt;ul>
&lt;li>&lt;strong>Simulation files&lt;/strong>: &lt;span style="white-space: nowrap;">&lt;code>CW_s_0.600.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/CW_s_0.600.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/CW_s_0.600.xml" title="Download XML file" data-bs-toggle="tooltip" download="CW_s_0.600.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>, &lt;span style="white-space: nowrap;">&lt;code>CW_s_0.8_noise.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/CW_s_0.8_noise.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/CW_s_0.8_noise.xml" title="Download XML file" data-bs-toggle="tooltip" download="CW_s_0.8_noise.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>&lt;/li>
&lt;li>&lt;strong>Key behavior&lt;/strong>: At $s = 0.6$, the cell supports counter-propagating waves, moving back and forth (&lt;a href="#fig-5">Figure 5&lt;/a>). At $s = 0.8$, adding noise can disrupt one of the counter-propagating peaks, leaving a single traveling wave that leads to small circular turning paths or reversal of motion (&lt;a href="#fig-6">Figure 6&lt;/a>).&lt;/li>
&lt;/ul>
&lt;div id="fig-5">
&lt;figure id="figure-figure-5-coexisting-motility-modes-in-smaller-cells-s--06-l--2lambda-the-cell-is-initialized-in-a-polar-state-but-the-distribution-destabilizes-into-a-pair-of-counter-propagating-traveling-waves-these-waves-drive-back-and-forth-cell-movement-as-they-propagate-and-periodically-splitmerge-along-the-rim">
&lt;div class="d-flex justify-content-center">
&lt;div class="w-100" >&lt;img alt="**Figure 5.** Coexisting motility modes in smaller cells ($s = 0.6$, $L = 2\lambda$). The cell is initialized in a polar state, but the distribution destabilizes into a pair of counter-propagating traveling waves. These waves drive back-and-forth cell movement as they propagate and periodically split/merge along the rim." srcset="
/media/model/m2074/Fig10_hubcb41ca6a10592c824eff16767c459e9_667648_e9739d504b3e8c61ff3742a3cbb5095d.png 400w,
/media/model/m2074/Fig10_hubcb41ca6a10592c824eff16767c459e9_667648_1cf7dbb578c9505c7b75a6c746e6e6a2.png 760w,
/media/model/m2074/Fig10_hubcb41ca6a10592c824eff16767c459e9_667648_1200x1200_fit_lanczos_3.png 1200w"
src="https://morpheus.gitlab.io/media/model/m2074/Fig10_hubcb41ca6a10592c824eff16767c459e9_667648_e9739d504b3e8c61ff3742a3cbb5095d.png"
width="760"
height="561"
loading="lazy" data-zoomable />&lt;/div>
&lt;/div>&lt;figcaption>
&lt;strong>Figure 5.&lt;/strong> Coexisting motility modes in smaller cells ($s = 0.6$, $L = 2\lambda$). The cell is initialized in a polar state, but the distribution destabilizes into a pair of counter-propagating traveling waves. These waves drive back-and-forth cell movement as they propagate and periodically split/merge along the rim.
&lt;/figcaption>&lt;/figure>
&lt;/div>
&lt;div id="fig-6">
&lt;figure id="figure-figure-6-exotic-cell-trajectories-under-temporary-noise-s--08-l--2lambda-following-application-of-spatial-noise-red-stripe-the-counter-propagating-waves-transition-to-a-single-peak-traveling-wave-top-leading-to-circular-turning-trajectories-or-experience-an-axis-shiftreversal-of-back-and-forth-motion-bottom">
&lt;div class="d-flex justify-content-center">
&lt;div class="w-100" >&lt;img alt="**Figure 6.** Exotic cell trajectories under temporary noise ($s = 0.8$, $L = 2\lambda$). Following application of spatial noise (red stripe), the counter-propagating waves transition to a single-peak traveling wave (top, leading to circular turning trajectories) or experience an axis shift/reversal of back-and-forth motion (bottom)." srcset="
/media/model/m2074/Fig11_hu91f8defdb75b589ce92e571a05ffc099_887705_8c52c512ba655c105a932ca6d3de90c7.png 400w,
/media/model/m2074/Fig11_hu91f8defdb75b589ce92e571a05ffc099_887705_f43c97d20fb0f112fa4c830460370170.png 760w,
/media/model/m2074/Fig11_hu91f8defdb75b589ce92e571a05ffc099_887705_1200x1200_fit_lanczos_3.png 1200w"
src="https://morpheus.gitlab.io/media/model/m2074/Fig11_hu91f8defdb75b589ce92e571a05ffc099_887705_8c52c512ba655c105a932ca6d3de90c7.png"
width="760"
height="676"
loading="lazy" data-zoomable />&lt;/div>
&lt;/div>&lt;figcaption>
&lt;strong>Figure 6.&lt;/strong> Exotic cell trajectories under temporary noise ($s = 0.8$, $L = 2\lambda$). Following application of spatial noise (red stripe), the counter-propagating waves transition to a single-peak traveling wave (top, leading to circular turning trajectories) or experience an axis shift/reversal of back-and-forth motion (bottom).
&lt;/figcaption>&lt;/figure>
&lt;/div>
&lt;h3 id="5-transitions-under-time-dependent-feedback">5. Transitions under Time-Dependent Feedback&lt;/h3>
&lt;p>By sweeping the negative feedback parameter $s(t)$ dynamically in time, cells can be driven across parity-breaking bifurcations.&lt;/p>
&lt;ul>
&lt;li>&lt;strong>Simulation files&lt;/strong>: &lt;span style="white-space: nowrap;">&lt;code>POLAR2TW_main.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/POLAR2TW_main.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/POLAR2TW_main.xml" title="Download XML file" data-bs-toggle="tooltip" download="POLAR2TW_main.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span> (directed to turning), &lt;span style="white-space: nowrap;">&lt;code>TW2POLAR.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/TW2POLAR.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/TW2POLAR.xml" title="Download XML file" data-bs-toggle="tooltip" download="TW2POLAR.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span> (turning to directed)&lt;/li>
&lt;li>&lt;strong>Key behavior&lt;/strong>: A linear increase in $s$ causes a polar cell to transition into a single traveling wave and start turning (&lt;a href="#fig-7">Figure 7&lt;/a>). A linear decrease in $s$ brings the cell back from turning to directed migration (&lt;a href="#fig-8">Figure 8&lt;/a>).&lt;/li>
&lt;/ul>
&lt;div id="fig-7">
&lt;figure id="figure-figure-7-transition-from-directed-cell-motion-to-cell-turning-as-the-feedback-rate-st-grows-linearly-from-0475-to-06-sweeping-across-the-parity-breaking-bifurcation-the-polar-distribution-shifts-into-a-single-traveling-wave-causing-the-cell-to-veer-into-a-circular-path">
&lt;div class="d-flex justify-content-center">
&lt;div class="w-100" >&lt;img alt="**Figure 7.** Transition from directed cell motion to cell turning. As the feedback rate $s(t)$ grows linearly from $0.475$ to $0.6$ (sweeping across the parity-breaking bifurcation), the polar distribution shifts into a single traveling wave, causing the cell to veer into a circular path." srcset="
/media/model/m2074/Fig12_hu06355ef2b23a56e437128643fbee891b_818828_8cde7d15b374fe853d72afd1a6671541.png 400w,
/media/model/m2074/Fig12_hu06355ef2b23a56e437128643fbee891b_818828_5b0ddb06514a43bd906f543de91eb198.png 760w,
/media/model/m2074/Fig12_hu06355ef2b23a56e437128643fbee891b_818828_1200x1200_fit_lanczos_3.png 1200w"
src="https://morpheus.gitlab.io/media/model/m2074/Fig12_hu06355ef2b23a56e437128643fbee891b_818828_8cde7d15b374fe853d72afd1a6671541.png"
width="760"
height="500"
loading="lazy" data-zoomable />&lt;/div>
&lt;/div>&lt;figcaption>
&lt;strong>Figure 7.&lt;/strong> Transition from directed cell motion to cell turning. As the feedback rate $s(t)$ grows linearly from $0.475$ to $0.6$ (sweeping across the parity-breaking bifurcation), the polar distribution shifts into a single traveling wave, causing the cell to veer into a circular path.
&lt;/figcaption>&lt;/figure>
&lt;/div>
&lt;div id="fig-8">
&lt;figure id="figure-figure-8-transition-from-cell-turning-to-directed-cell-motion-in-the-reverse-of-the-sweep-decreasing-the-feedback-rate-st-from-06-back-to-0475-slows-the-traveling-wave-to-zero-velocity-allowing-a-polar-distribution-to-re-emerge-and-driving-the-cell-along-a-straight-polarized-path">
&lt;div class="d-flex justify-content-center">
&lt;div class="w-100" >&lt;img alt="**Figure 8.** Transition from cell turning to directed cell motion. In the reverse of the sweep, decreasing the feedback rate $s(t)$ from $0.6$ back to $0.475$ slows the traveling wave to zero velocity, allowing a polar distribution to re-emerge and driving the cell along a straight, polarized path." srcset="
/media/model/m2074/Fig13_hu25aaa5ae5afaeef74531b4fafea96495_698245_51cb6551dcc3a0a348c07dd93669d268.png 400w,
/media/model/m2074/Fig13_hu25aaa5ae5afaeef74531b4fafea96495_698245_311d0e7beeeee853d2c687d965e73501.png 760w,
/media/model/m2074/Fig13_hu25aaa5ae5afaeef74531b4fafea96495_698245_1200x1200_fit_lanczos_3.png 1200w"
src="https://morpheus.gitlab.io/media/model/m2074/Fig13_hu25aaa5ae5afaeef74531b4fafea96495_698245_51cb6551dcc3a0a348c07dd93669d268.png"
width="760"
height="472"
loading="lazy" data-zoomable />&lt;/div>
&lt;/div>&lt;figcaption>
&lt;strong>Figure 8.&lt;/strong> Transition from cell turning to directed cell motion. In the reverse of the sweep, decreasing the feedback rate $s(t)$ from $0.6$ back to $0.475$ slows the traveling wave to zero velocity, allowing a polar distribution to re-emerge and driving the cell along a straight, polarized path.
&lt;/figcaption>&lt;/figure>
&lt;/div>
&lt;h3 id="6-random-motion">6. Random Motion&lt;/h3>
&lt;ul>
&lt;li>&lt;strong>Simulation file&lt;/strong>: &lt;span style="white-space: nowrap;">&lt;code>Random_motion.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/Random_motion.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/Random_motion.xml" title="Download XML file" data-bs-toggle="tooltip" download="Random_motion.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>&lt;/li>
&lt;li>&lt;strong>Key behavior&lt;/strong>: By allowing $s(t)$ to undergo a random walk (Wiener process with reflective boundaries in the range $[0.475, 0.6]$), the cell transitions randomly between polar, counter-propagating peaks, and traveling waves, generating irregular trajectories.&lt;/li>
&lt;/ul>
&lt;div id="fig-9">
&lt;figure id="figure-figure-9-cell-motility-under-a-randomly-changing-feedback-parameter-st-executing-a-random-walk-in-the-range-0475-06-the-cell-exhibits-random-switching-between-directed-polar-migration-counter-propagating-peaks-and-traveling-waves">
&lt;div class="d-flex justify-content-center">
&lt;div class="w-100" >&lt;img alt="**Figure 9.** Cell motility under a randomly changing feedback parameter $s(t)$ executing a random walk in the range $[0.475, 0.6]$. The cell exhibits random switching between directed polar migration, counter-propagating peaks, and traveling waves." srcset="
/media/model/m2074/Fig14_hud5ba05a605f7631a0b53ca09c5352115_935365_cde1f63c5284fc0e3cf935af927836fc.png 400w,
/media/model/m2074/Fig14_hud5ba05a605f7631a0b53ca09c5352115_935365_de7d89fb5e5d636dd7a61a9dbd58a1a7.png 760w,
/media/model/m2074/Fig14_hud5ba05a605f7631a0b53ca09c5352115_935365_1200x1200_fit_lanczos_3.png 1200w"
src="https://morpheus.gitlab.io/media/model/m2074/Fig14_hud5ba05a605f7631a0b53ca09c5352115_935365_cde1f63c5284fc0e3cf935af927836fc.png"
width="760"
height="472"
loading="lazy" data-zoomable />&lt;/div>
&lt;/div>&lt;figcaption>
&lt;strong>Figure 9.&lt;/strong> Cell motility under a randomly changing feedback parameter $s(t)$ executing a random walk in the range $[0.475, 0.6]$. The cell exhibits random switching between directed polar migration, counter-propagating peaks, and traveling waves.
&lt;/figcaption>&lt;/figure>
&lt;/div>
&lt;h3 id="7-continual-space-time-noise">7. Continual Space-Time Noise&lt;/h3>
&lt;ul>
&lt;li>&lt;strong>Simulation file&lt;/strong>: &lt;span style="white-space: nowrap;">&lt;code>Dicty.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/Dicty.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/Dicty.xml" title="Download XML file" data-bs-toggle="tooltip" download="Dicty.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>&lt;/li>
&lt;li>&lt;strong>Key behavior&lt;/strong>: In larger cells ($L = 4\lambda$) with $s = 0.8$, continual space-time noise disrupts regular traveling waves. This leads to competing pseudopods where one randomly dominates the other, producing amoeboid-like motility trajectories that resemble &lt;em>Dictyostelium discoideum&lt;/em>.&lt;/li>
&lt;/ul>
&lt;div id="fig-10">
&lt;figure id="figure-figure-10-cell-shapes-and-pseudopod-competition-under-continual-space-time-distributed-noise-s--08-l--4lambda-the-noise-disrupts-regular-counter-propagating-peaks-causing-alternating-pseudopod-dominance-and-random-turning-trajectories-that-resemble-the-amoeboid-motility-phenotype-of-dictyostelium">
&lt;div class="d-flex justify-content-center">
&lt;div class="w-100" >&lt;img alt="**Figure 10.** Cell shapes and pseudopod competition under continual space-time distributed noise ($s = 0.8$, $L = 4\lambda$). The noise disrupts regular counter-propagating peaks, causing alternating pseudopod dominance and random turning trajectories that resemble the amoeboid motility phenotype of *Dictyostelium*." srcset="
/media/model/m2074/Fig16_hu32530177263526f5f7ccf041132f91ec_1173981_73f09415db60a0fe3e174d27483b79d0.png 400w,
/media/model/m2074/Fig16_hu32530177263526f5f7ccf041132f91ec_1173981_82427d6d63592bfde2090a0a7a57598b.png 760w,
/media/model/m2074/Fig16_hu32530177263526f5f7ccf041132f91ec_1173981_1200x1200_fit_lanczos_3.png 1200w"
src="https://morpheus.gitlab.io/media/model/m2074/Fig16_hu32530177263526f5f7ccf041132f91ec_1173981_73f09415db60a0fe3e174d27483b79d0.png"
width="760"
height="506"
loading="lazy" data-zoomable />&lt;/div>
&lt;/div>&lt;figcaption>
&lt;strong>Figure 10.&lt;/strong> Cell shapes and pseudopod competition under continual space-time distributed noise ($s = 0.8$, $L = 4\lambda$). The noise disrupts regular counter-propagating peaks, causing alternating pseudopod dominance and random turning trajectories that resemble the amoeboid motility phenotype of &lt;em>Dictyostelium&lt;/em>.
&lt;/figcaption>&lt;/figure>
&lt;/div>
&lt;h2 id="reference">Reference&lt;/h2>
&lt;p>This model is the &lt;strong>original&lt;/strong> used in the publication, up to technical updates:&lt;/p>
&lt;blockquote>
&lt;p>J. M. Hughes, J. Algorta, L. Edelstein-Keshet: &lt;a href="https://doi.org/10.48550/arXiv.2602.08779" target="_blank" rel="noopener">How negative feedback from filamentous actin affects cell shapes and motility&lt;/a>. &lt;em>arXiv&lt;/em> &lt;strong>2602.08779&lt;/strong>, 2026.&lt;/p>
&lt;/blockquote>
&lt;p>&lt;em>The model originates from a &lt;strong>preprint&lt;/strong> and thus has not been formally peer-reviewed.&lt;/em>&lt;/p>
&lt;h2 id="model">Model&lt;/h2>
&lt;div class="card">
&lt;div class="card-header">&lt;i class="fas fa-download fa-lg pr-2">&lt;/i>Get this model via:&lt;/div>
&lt;div class="card-body" style="padding-top: 0; padding-bottom: 0;">
&lt;div class="card-text" style="padding-top: 0; padding-bottom: 0;">
&lt;p>
&lt;li>&lt;i class="fas fa-magic pr-2">&lt;/i>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/POLAR2TW_main.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;strong>Morpheus-Link&lt;/strong>&lt;/a> or&lt;/li>
&lt;li>&lt;i class="fas fa-file-code pr-2">&lt;/i>&amp;nbsp;&lt;strong>Download&lt;/strong>: &lt;a href="https://morpheus.gitlab.io/media/model/m2074/POLAR2TW_main.xml" title="Download XML file" data-bs-toggle="tooltip" download="POLAR2TW_main.xml">
&lt;code>POLAR2TW_main.xml&lt;/code>
&lt;/a>&lt;/li>
&lt;/p>
&lt;p>
&lt;details class="spoiler " id="spoiler-27">
&lt;summary>&lt;span title='Show XML preview' data-bs-toggle='tooltip'>&lt;i class='fas fa-code pr-1'>&lt;/i>XML Preview&lt;/span>&lt;/summary>
&lt;p>&lt;pre>&lt;code class="language-xml">&amp;lt;MorpheusModel version=&amp;quot;4&amp;quot;&amp;gt;
&amp;lt;Description&amp;gt;
&amp;lt;Title&amp;gt;M2074 Transition from Directed Cell Motion to Cell Turning&amp;lt;/Title&amp;gt;
&amp;lt;Details&amp;gt;Model ID: https://identifiers.org/morpheus/M2074
File type: Main model
Software: Morpheus (open source). Download from: https://morpheus.gitlab.io
Full title: How Negative Feedback from Filamentous Actin Affects Cell Shapes and Motility
Authors: J. M. Hughes, J. Algorta, L. Edelstein-Keshet
Submitter: J. Algorta
Curator: D. Jahn
Date: 07.06.2026
Reference: This model is the original used in the publication, up to technical updates:
J. M. Hughes, J. Algorta, L. Edelstein-Keshet: How negative feedback from filamentous actin affects cell shapes and motility. arXiv 2602.08779, 2026.
https://doi.org/10.48550/arXiv.2602.08779
Comment: This model simulates the transition from directed cell motion to cell turning due to a linearly increasing negative feedback rate s(t), simulated in Morpheus for Figure 12 of the publication. PDE model for F-actin negative feedback to GTPases, and GTPase promotion of F-actin. The reaction-diffusion PDEs are implemented on the cell edge. u = active GTPase (Rac), v = inactive GTPase, F = F-actin.&amp;lt;/Details&amp;gt;
&amp;lt;/Description&amp;gt;
&amp;lt;Global&amp;gt;
&amp;lt;Constant symbol=&amp;quot;lengthscale&amp;quot; value=&amp;quot;L/(2*sqrt(targetVol*pi))&amp;quot;/&amp;gt;
&amp;lt;Constant symbol=&amp;quot;L&amp;quot; value=&amp;quot;5&amp;quot;/&amp;gt;
&amp;lt;Constant symbol=&amp;quot;targetVol&amp;quot; value=&amp;quot;4800/2&amp;quot;/&amp;gt;
&amp;lt;Field symbol=&amp;quot;prot&amp;quot; value=&amp;quot;0.0&amp;quot;/&amp;gt;
&amp;lt;Variable symbol=&amp;quot;time_var&amp;quot; value=&amp;quot;0.0&amp;quot;/&amp;gt;
&amp;lt;System solver=&amp;quot;Dormand-Prince [adaptive, O(5)]&amp;quot;&amp;gt;
&amp;lt;Rule symbol-ref=&amp;quot;time_var&amp;quot;&amp;gt;
&amp;lt;Expression&amp;gt;time&amp;lt;/Expression&amp;gt;
&amp;lt;/Rule&amp;gt;
&amp;lt;/System&amp;gt;
&amp;lt;Constant symbol=&amp;quot;s0&amp;quot; value=&amp;quot;0.475&amp;quot;/&amp;gt;
&amp;lt;Constant symbol=&amp;quot;sf&amp;quot; value=&amp;quot;0.6&amp;quot;/&amp;gt;
&amp;lt;Constant symbol=&amp;quot;tf&amp;quot; value=&amp;quot;500&amp;quot;/&amp;gt;
&amp;lt;Variable symbol=&amp;quot;s&amp;quot; value=&amp;quot;0.0&amp;quot;/&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Variable symbol=&amp;quot;td&amp;quot; value=&amp;quot;-ln(rand_uni(0,1))/lambda&amp;quot;/&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Variable symbol=&amp;quot;lambda&amp;quot; value=&amp;quot;20&amp;quot;/&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;Constant symbol=&amp;quot;delta_size&amp;quot; value=&amp;quot;0.005&amp;quot;/&amp;gt;
&amp;lt;Constant symbol=&amp;quot;lambda&amp;quot; value=&amp;quot;6*0.0001/(delta_size^2)&amp;quot;/&amp;gt;
&amp;lt;/Global&amp;gt;
&amp;lt;Space&amp;gt;
&amp;lt;Lattice class=&amp;quot;square&amp;quot;&amp;gt;
&amp;lt;Size symbol=&amp;quot;lattice&amp;quot; value=&amp;quot;5000,5000, 0&amp;quot;/&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Size symbol=&amp;quot;lattice&amp;quot; value=&amp;quot;800/sqrt(2), 2*400/sqrt(2), 0&amp;quot;/&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;BoundaryConditions&amp;gt;
&amp;lt;Condition type=&amp;quot;noflux&amp;quot; boundary=&amp;quot;x&amp;quot;/&amp;gt;
&amp;lt;Condition type=&amp;quot;noflux&amp;quot; boundary=&amp;quot;y&amp;quot;/&amp;gt;
&amp;lt;/BoundaryConditions&amp;gt;
&amp;lt;NodeLength value=&amp;quot;1.0&amp;quot;/&amp;gt;
&amp;lt;Neighborhood&amp;gt;
&amp;lt;Distance&amp;gt;2.0&amp;lt;/Distance&amp;gt;
&amp;lt;/Neighborhood&amp;gt;
&amp;lt;/Lattice&amp;gt;
&amp;lt;SpaceSymbol symbol=&amp;quot;l&amp;quot;/&amp;gt;
&amp;lt;MembraneLattice&amp;gt;
&amp;lt;Resolution symbol=&amp;quot;memsize&amp;quot; value=&amp;quot;500&amp;quot;/&amp;gt;
&amp;lt;SpaceSymbol symbol=&amp;quot;m&amp;quot;/&amp;gt;
&amp;lt;/MembraneLattice&amp;gt;
&amp;lt;/Space&amp;gt;
&amp;lt;Time&amp;gt;
&amp;lt;StartTime value=&amp;quot;0&amp;quot;/&amp;gt;
&amp;lt;StopTime value=&amp;quot;600&amp;quot;/&amp;gt;
&amp;lt;SaveInterval value=&amp;quot;0&amp;quot;/&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;RandomSeed value=&amp;quot;0&amp;quot;/&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;TimeSymbol symbol=&amp;quot;time&amp;quot;/&amp;gt;
&amp;lt;/Time&amp;gt;
&amp;lt;CellTypes&amp;gt;
&amp;lt;CellType name=&amp;quot;cells&amp;quot; class=&amp;quot;biological&amp;quot;&amp;gt;
&amp;lt;VolumeConstraint target=&amp;quot;targetVol&amp;quot; strength=&amp;quot;1&amp;quot; name=&amp;quot;&amp;quot;/&amp;gt;
&amp;lt;SurfaceConstraint target=&amp;quot;1.2&amp;quot; strength=&amp;quot;1&amp;quot; mode=&amp;quot;aspherity&amp;quot;/&amp;gt;
&amp;lt;MembraneProperty symbol=&amp;quot;Noise&amp;quot; value=&amp;quot;0.0&amp;quot;&amp;gt;
&amp;lt;Diffusion well-mixed=&amp;quot;false&amp;quot; rate=&amp;quot;0.0&amp;quot;/&amp;gt;
&amp;lt;/MembraneProperty&amp;gt;
&amp;lt;MembraneProperty symbol=&amp;quot;u&amp;quot; name=&amp;quot;Active form of protein&amp;quot; value=&amp;quot;0.75-0.5*cos(m.phi)&amp;quot;&amp;gt;
&amp;lt;Diffusion rate=&amp;quot;0.1/lengthscale^2&amp;quot;/&amp;gt;
&amp;lt;/MembraneProperty&amp;gt;
&amp;lt;MembraneProperty symbol=&amp;quot;v&amp;quot; name=&amp;quot;Inactive form of protein&amp;quot; value=&amp;quot;1.25+0.1*cos(m.phi)&amp;quot;&amp;gt;
&amp;lt;Diffusion rate=&amp;quot;1/lengthscale^2&amp;quot;/&amp;gt;
&amp;lt;/MembraneProperty&amp;gt;
&amp;lt;MembraneProperty symbol=&amp;quot;F&amp;quot; name=&amp;quot;F-actin&amp;quot; value=&amp;quot;3.5-2*cos(m.phi)&amp;quot;&amp;gt;
&amp;lt;Diffusion rate=&amp;quot;0.001/lengthscale^2&amp;quot;/&amp;gt;
&amp;lt;/MembraneProperty&amp;gt;
&amp;lt;Property symbol=&amp;quot;s&amp;quot; value=&amp;quot;s0&amp;quot;/&amp;gt;
&amp;lt;System time-scaling=&amp;quot;1&amp;quot; time-step=&amp;quot;0.05&amp;quot; name=&amp;quot;WavePinning with Inhibitor&amp;quot; solver=&amp;quot;Runge-Kutta [fixed, O(4)]&amp;quot;&amp;gt;
&amp;lt;Constant symbol=&amp;quot;b&amp;quot; value=&amp;quot;0.067&amp;quot;/&amp;gt;
&amp;lt;Constant symbol=&amp;quot;gamma&amp;quot; value=&amp;quot;3.557&amp;quot;/&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Constant symbol=&amp;quot;s&amp;quot; value=&amp;quot;s0*(time &amp;amp;lt; 1/4*tf)+ (s0-(s0-sf)*(time-1/4*tf)/(3/4*tf))*(time &amp;gt; 1/4*tf)*(time &amp;amp;lt; tf)+sf*(time &amp;gt;tf)&amp;quot;/&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;Constant symbol=&amp;quot;eps&amp;quot; value=&amp;quot;0.6&amp;quot;/&amp;gt;
&amp;lt;Constant symbol=&amp;quot;p0&amp;quot; value=&amp;quot;0.8&amp;quot;/&amp;gt;
&amp;lt;Constant symbol=&amp;quot;p1&amp;quot; value=&amp;quot;3.8&amp;quot;/&amp;gt;
&amp;lt;Intermediate symbol=&amp;quot;A&amp;quot; value=&amp;quot;(b+gamma*u^2)*v-(1+s*F+u^2)*u&amp;quot;/&amp;gt;
&amp;lt;DiffEqn symbol-ref=&amp;quot;u&amp;quot;&amp;gt;
&amp;lt;Expression&amp;gt;A&amp;lt;/Expression&amp;gt;
&amp;lt;/DiffEqn&amp;gt;
&amp;lt;DiffEqn symbol-ref=&amp;quot;v&amp;quot;&amp;gt;
&amp;lt;Expression&amp;gt;-A&amp;lt;/Expression&amp;gt;
&amp;lt;/DiffEqn&amp;gt;
&amp;lt;DiffEqn symbol-ref=&amp;quot;F&amp;quot;&amp;gt;
&amp;lt;Expression&amp;gt;eps*(p0+p1*u-F)&amp;lt;/Expression&amp;gt;
&amp;lt;/DiffEqn&amp;gt;
&amp;lt;Rule symbol-ref=&amp;quot;Noise&amp;quot;&amp;gt;
&amp;lt;Expression&amp;gt;4*(time_var&amp;gt;150)*(time_var&amp;amp;lt;200)*rand_norm(0,1)&amp;lt;/Expression&amp;gt;
&amp;lt;/Rule&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Rule symbol-ref=&amp;quot;s&amp;quot;&amp;gt;
&amp;lt;Expression&amp;gt;s0*(time &amp;amp;lt; 1/4*tf)+ (s0-(s0-sf)*(time-1/4*tf)/(3/4*tf))*(time &amp;gt; 1/4*tf)*(time &amp;amp;lt; tf)+sf*(time &amp;gt;tf)&amp;lt;/Expression&amp;gt;
&amp;lt;/Rule&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;/System&amp;gt;
&amp;lt;System solver=&amp;quot;Dormand-Prince [adaptive, O(5)]&amp;quot;&amp;gt;
&amp;lt;Rule symbol-ref=&amp;quot;s&amp;quot;&amp;gt;
&amp;lt;Expression&amp;gt;s0*(time &amp;amp;lt; 0.25*tf) + (s0-(s0-sf)*(time-0.25*tf)/(0.5*tf))*(time &amp;gt; 0.25*tf)*(time &amp;amp;lt; 0.75*tf) + sf*(time &amp;gt; 0.75*tf)&amp;lt;/Expression&amp;gt;
&amp;lt;/Rule&amp;gt;
&amp;lt;/System&amp;gt;
&amp;lt;StarConvex membrane=&amp;quot;F&amp;quot; strength=&amp;quot;1&amp;quot; retraction=&amp;quot;false&amp;quot; protrusion=&amp;quot;true&amp;quot;/&amp;gt;
&amp;lt;Protrusion strength=&amp;quot;1&amp;quot; field=&amp;quot;prot&amp;quot; maximum=&amp;quot;150&amp;quot;/&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Event&amp;gt;
&amp;lt;Condition&amp;gt;(time &amp;gt; 1/4*tf)*(time &amp;amp;lt; tf)&amp;lt;/Condition&amp;gt;
&amp;lt;Rule symbol-ref=&amp;quot;s&amp;quot;&amp;gt;
&amp;lt;Expression&amp;gt;s0-(s0-sf)*(time-1/4*tf)/(3/4*tf)&amp;lt;/Expression&amp;gt;
&amp;lt;/Rule&amp;gt;
&amp;lt;/Event&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Event&amp;gt;
&amp;lt;Condition&amp;gt;time &amp;gt; tf&amp;lt;/Condition&amp;gt;
&amp;lt;Rule symbol-ref=&amp;quot;s&amp;quot;&amp;gt;
&amp;lt;Expression&amp;gt;sf&amp;lt;/Expression&amp;gt;
&amp;lt;/Rule&amp;gt;
&amp;lt;/Event&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;/CellType&amp;gt;
&amp;lt;/CellTypes&amp;gt;
&amp;lt;CPM&amp;gt;
&amp;lt;Interaction default=&amp;quot;0.0&amp;quot;/&amp;gt;
&amp;lt;MonteCarloSampler stepper=&amp;quot;edgelist&amp;quot;&amp;gt;
&amp;lt;MCSDuration value=&amp;quot;0.01&amp;quot;/&amp;gt;
&amp;lt;Neighborhood&amp;gt;
&amp;lt;Order&amp;gt;2&amp;lt;/Order&amp;gt;
&amp;lt;/Neighborhood&amp;gt;
&amp;lt;MetropolisKinetics yield=&amp;quot;0.05&amp;quot; temperature=&amp;quot;1&amp;quot;/&amp;gt;
&amp;lt;/MonteCarloSampler&amp;gt;
&amp;lt;ShapeSurface scaling=&amp;quot;norm&amp;quot;&amp;gt;
&amp;lt;Neighborhood&amp;gt;
&amp;lt;Order&amp;gt;6&amp;lt;/Order&amp;gt;
&amp;lt;/Neighborhood&amp;gt;
&amp;lt;/ShapeSurface&amp;gt;
&amp;lt;/CPM&amp;gt;
&amp;lt;CellPopulations&amp;gt;
&amp;lt;Population type=&amp;quot;cells&amp;quot; size=&amp;quot;0&amp;quot;&amp;gt;
&amp;lt;InitCellObjects mode=&amp;quot;distance&amp;quot;&amp;gt;
&amp;lt;Arrangement repetitions=&amp;quot;1, 1, 0&amp;quot; displacements=&amp;quot;1, 1, 0&amp;quot;&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Sphere center=&amp;quot;2766 282 0&amp;quot; radius=&amp;quot;24*2&amp;quot;/&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;Sphere center=&amp;quot;4900 2000 0&amp;quot; radius=&amp;quot;24*2&amp;quot;/&amp;gt;
&amp;lt;/Arrangement&amp;gt;
&amp;lt;/InitCellObjects&amp;gt;
&amp;lt;/Population&amp;gt;
&amp;lt;/CellPopulations&amp;gt;
&amp;lt;Analysis&amp;gt;
&amp;lt;Logger time-step=&amp;quot;1&amp;quot;&amp;gt;
&amp;lt;Input&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;m.phi&amp;quot;/&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;u&amp;quot;/&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;F&amp;quot;/&amp;gt;
&amp;lt;/Input&amp;gt;
&amp;lt;Output&amp;gt;
&amp;lt;TextOutput/&amp;gt;
&amp;lt;/Output&amp;gt;
&amp;lt;Plots&amp;gt;
&amp;lt;Plot time-step=&amp;quot;5&amp;quot;&amp;gt;
&amp;lt;Style style=&amp;quot;points&amp;quot;/&amp;gt;
&amp;lt;Terminal terminal=&amp;quot;png&amp;quot;/&amp;gt;
&amp;lt;X-axis maximum=&amp;quot;6.28&amp;quot;&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;m.phi&amp;quot;/&amp;gt;
&amp;lt;/X-axis&amp;gt;
&amp;lt;Y-axis maximum=&amp;quot;10&amp;quot;&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;u&amp;quot;/&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;v&amp;quot;/&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;F&amp;quot;/&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;Noise&amp;quot;/&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;/Y-axis&amp;gt;
&amp;lt;Range&amp;gt;
&amp;lt;Time mode=&amp;quot;current&amp;quot;/&amp;gt;
&amp;lt;/Range&amp;gt;
&amp;lt;/Plot&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;SurfacePlot time-step=&amp;quot;10&amp;quot;&amp;gt;
&amp;lt;Color-bar&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;u&amp;quot;/&amp;gt;
&amp;lt;/Color-bar&amp;gt;
&amp;lt;Terminal terminal=&amp;quot;png&amp;quot;/&amp;gt;
&amp;lt;/SurfacePlot&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;Plot time-step=&amp;quot;-1&amp;quot;&amp;gt;
&amp;lt;Style style=&amp;quot;points&amp;quot; point-size=&amp;quot;1&amp;quot;/&amp;gt;
&amp;lt;Terminal terminal=&amp;quot;png&amp;quot;/&amp;gt;
&amp;lt;X-axis&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;time&amp;quot;/&amp;gt;
&amp;lt;/X-axis&amp;gt;
&amp;lt;Y-axis minimum=&amp;quot;0.0&amp;quot; maximum=&amp;quot;6.3&amp;quot;&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;m.phi&amp;quot;/&amp;gt;
&amp;lt;/Y-axis&amp;gt;
&amp;lt;Color-bar&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;u&amp;quot;/&amp;gt;
&amp;lt;/Color-bar&amp;gt;
&amp;lt;/Plot&amp;gt;
&amp;lt;Plot time-step=&amp;quot;5&amp;quot;&amp;gt;
&amp;lt;Style style=&amp;quot;points&amp;quot;/&amp;gt;
&amp;lt;Terminal terminal=&amp;quot;png&amp;quot;/&amp;gt;
&amp;lt;X-axis&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;time&amp;quot;/&amp;gt;
&amp;lt;/X-axis&amp;gt;
&amp;lt;Y-axis&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;s&amp;quot;/&amp;gt;
&amp;lt;/Y-axis&amp;gt;
&amp;lt;/Plot&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Plot time-step=&amp;quot;-1&amp;quot;&amp;gt;
&amp;lt;Style style=&amp;quot;points&amp;quot;/&amp;gt;
&amp;lt;Terminal terminal=&amp;quot;png&amp;quot;/&amp;gt;
&amp;lt;X-axis&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;time&amp;quot;/&amp;gt;
&amp;lt;/X-axis&amp;gt;
&amp;lt;Y-axis&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;s&amp;quot;/&amp;gt;
&amp;lt;/Y-axis&amp;gt;
&amp;lt;/Plot&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;/Plots&amp;gt;
&amp;lt;/Logger&amp;gt;
&amp;lt;ModelGraph include-tags=&amp;quot;#untagged&amp;quot; format=&amp;quot;dot&amp;quot; reduced=&amp;quot;false&amp;quot;/&amp;gt;
&amp;lt;Gnuplotter time-step=&amp;quot;5&amp;quot; decorate=&amp;quot;false&amp;quot; log-commands=&amp;quot;true&amp;quot;&amp;gt;
&amp;lt;Plot&amp;gt;
&amp;lt;Cells value=&amp;quot;F&amp;quot;/&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Field symbol-ref=&amp;quot;prot&amp;quot;/&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;/Plot&amp;gt;
&amp;lt;Terminal name=&amp;quot;png&amp;quot; size=&amp;quot;1200,1200,0&amp;quot;/&amp;gt;
&amp;lt;/Gnuplotter&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Logger time-step=&amp;quot;-1&amp;quot;&amp;gt;
&amp;lt;Input&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;cell.center.x&amp;quot;/&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;cell.center.y&amp;quot;/&amp;gt;
&amp;lt;/Input&amp;gt;
&amp;lt;Output&amp;gt;
&amp;lt;TextOutput/&amp;gt;
&amp;lt;/Output&amp;gt;
&amp;lt;Plots internal:disabled=&amp;quot;true&amp;quot;&amp;gt;
&amp;lt;Plot time-step=&amp;quot;-1&amp;quot;&amp;gt;
&amp;lt;Style style=&amp;quot;points&amp;quot; point-size=&amp;quot;0.5&amp;quot;/&amp;gt;
&amp;lt;Terminal terminal=&amp;quot;png&amp;quot;/&amp;gt;
&amp;lt;X-axis&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;cell.center.x&amp;quot;/&amp;gt;
&amp;lt;/X-axis&amp;gt;
&amp;lt;Y-axis&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;cell.center.y&amp;quot;/&amp;gt;
&amp;lt;/Y-axis&amp;gt;
&amp;lt;Color-bar&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;time&amp;quot;/&amp;gt;
&amp;lt;/Color-bar&amp;gt;
&amp;lt;/Plot&amp;gt;
&amp;lt;/Plots&amp;gt;
&amp;lt;/Logger&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Gnuplotter time-step=&amp;quot;20&amp;quot; decorate=&amp;quot;false&amp;quot; log-commands=&amp;quot;true&amp;quot;&amp;gt;
&amp;lt;Plot&amp;gt;
&amp;lt;Cells value=&amp;quot;cell.id&amp;quot;/&amp;gt;
&amp;lt;/Plot&amp;gt;
&amp;lt;Terminal name=&amp;quot;png&amp;quot;/&amp;gt;
&amp;lt;/Gnuplotter&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;CellTracker time-step=&amp;quot;1.0&amp;quot; format=&amp;quot;ISBI 2012 (XML)&amp;quot;/&amp;gt;
&amp;lt;Logger time-step=&amp;quot;0.1&amp;quot;&amp;gt;
&amp;lt;Input&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;s&amp;quot;/&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;cell.center.y&amp;quot;/&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;/Input&amp;gt;
&amp;lt;Output&amp;gt;
&amp;lt;TextOutput/&amp;gt;
&amp;lt;/Output&amp;gt;
&amp;lt;Plots&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Plot time-step=&amp;quot;-1&amp;quot;&amp;gt;
&amp;lt;Style style=&amp;quot;points&amp;quot; point-size=&amp;quot;0.5&amp;quot;/&amp;gt;
&amp;lt;Terminal terminal=&amp;quot;png&amp;quot;/&amp;gt;
&amp;lt;X-axis&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;cell.center.x&amp;quot;/&amp;gt;
&amp;lt;/X-axis&amp;gt;
&amp;lt;Y-axis&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;cell.center.y&amp;quot;/&amp;gt;
&amp;lt;/Y-axis&amp;gt;
&amp;lt;Color-bar&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;time&amp;quot;/&amp;gt;
&amp;lt;/Color-bar&amp;gt;
&amp;lt;/Plot&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;Plot time-step=&amp;quot;-1&amp;quot;&amp;gt;
&amp;lt;Style style=&amp;quot;points&amp;quot;/&amp;gt;
&amp;lt;Terminal terminal=&amp;quot;png&amp;quot;/&amp;gt;
&amp;lt;X-axis&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;time&amp;quot;/&amp;gt;
&amp;lt;/X-axis&amp;gt;
&amp;lt;Y-axis&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;s&amp;quot;/&amp;gt;
&amp;lt;/Y-axis&amp;gt;
&amp;lt;/Plot&amp;gt;
&amp;lt;/Plots&amp;gt;
&amp;lt;/Logger&amp;gt;
&amp;lt;Logger time-step=&amp;quot;1&amp;quot;&amp;gt;
&amp;lt;Input&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;m.phi&amp;quot;/&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;u&amp;quot;/&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;F&amp;quot;/&amp;gt;
&amp;lt;/Input&amp;gt;
&amp;lt;Output&amp;gt;
&amp;lt;TextOutput/&amp;gt;
&amp;lt;/Output&amp;gt;
&amp;lt;!-- &amp;lt;Disabled&amp;gt;
&amp;lt;Plots&amp;gt;
&amp;lt;Plot time-step=&amp;quot;5&amp;quot; internal:disabled=&amp;quot;true&amp;quot;&amp;gt;
&amp;lt;Style style=&amp;quot;points&amp;quot;/&amp;gt;
&amp;lt;Terminal terminal=&amp;quot;png&amp;quot;/&amp;gt;
&amp;lt;X-axis maximum=&amp;quot;6.28&amp;quot;&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;m.phi&amp;quot;/&amp;gt;
&amp;lt;/X-axis&amp;gt;
&amp;lt;Y-axis maximum=&amp;quot;10&amp;quot;&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;u&amp;quot;/&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;v&amp;quot;/&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;F&amp;quot;/&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;Noise&amp;quot; internal:disabled=&amp;quot;true&amp;quot;/&amp;gt;
&amp;lt;/Y-axis&amp;gt;
&amp;lt;Range&amp;gt;
&amp;lt;Time mode=&amp;quot;current&amp;quot;/&amp;gt;
&amp;lt;/Range&amp;gt;
&amp;lt;/Plot&amp;gt;
&amp;lt;SurfacePlot time-step=&amp;quot;10&amp;quot; internal:disabled=&amp;quot;true&amp;quot;&amp;gt;
&amp;lt;Color-bar&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;u&amp;quot;/&amp;gt;
&amp;lt;/Color-bar&amp;gt;
&amp;lt;Terminal terminal=&amp;quot;png&amp;quot;/&amp;gt;
&amp;lt;/SurfacePlot&amp;gt;
&amp;lt;Plot time-step=&amp;quot;-1&amp;quot; internal:disabled=&amp;quot;true&amp;quot;&amp;gt;
&amp;lt;Style style=&amp;quot;points&amp;quot; point-size=&amp;quot;1&amp;quot;/&amp;gt;
&amp;lt;Terminal terminal=&amp;quot;png&amp;quot;/&amp;gt;
&amp;lt;X-axis&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;time&amp;quot;/&amp;gt;
&amp;lt;/X-axis&amp;gt;
&amp;lt;Y-axis minimum=&amp;quot;0.0&amp;quot; maximum=&amp;quot;6.3&amp;quot;&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;m.phi&amp;quot;/&amp;gt;
&amp;lt;/Y-axis&amp;gt;
&amp;lt;Color-bar&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;u&amp;quot;/&amp;gt;
&amp;lt;/Color-bar&amp;gt;
&amp;lt;/Plot&amp;gt;
&amp;lt;Plot time-step=&amp;quot;5&amp;quot; internal:disabled=&amp;quot;true&amp;quot;&amp;gt;
&amp;lt;Style style=&amp;quot;points&amp;quot;/&amp;gt;
&amp;lt;Terminal terminal=&amp;quot;png&amp;quot;/&amp;gt;
&amp;lt;X-axis&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;time&amp;quot;/&amp;gt;
&amp;lt;/X-axis&amp;gt;
&amp;lt;Y-axis&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;s&amp;quot;/&amp;gt;
&amp;lt;/Y-axis&amp;gt;
&amp;lt;/Plot&amp;gt;
&amp;lt;Plot time-step=&amp;quot;-1&amp;quot; internal:disabled=&amp;quot;true&amp;quot;&amp;gt;
&amp;lt;Style style=&amp;quot;points&amp;quot;/&amp;gt;
&amp;lt;Terminal terminal=&amp;quot;png&amp;quot;/&amp;gt;
&amp;lt;X-axis&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;time&amp;quot;/&amp;gt;
&amp;lt;/X-axis&amp;gt;
&amp;lt;Y-axis&amp;gt;
&amp;lt;Symbol symbol-ref=&amp;quot;s&amp;quot;/&amp;gt;
&amp;lt;/Y-axis&amp;gt;
&amp;lt;/Plot&amp;gt;
&amp;lt;/Plots&amp;gt;
&amp;lt;/Disabled&amp;gt;
--&amp;gt;
&amp;lt;/Logger&amp;gt;
&amp;lt;/Analysis&amp;gt;
&amp;lt;/MorpheusModel&amp;gt;
&lt;/code>&lt;/pre>
&lt;/p>
&lt;/details>
&lt;/p>
&lt;/div>
&lt;/div>
&lt;/div>
&lt;figure id="figure-model-graph">
&lt;div class="d-flex justify-content-center">
&lt;div class="w-100" >&lt;img alt="Model Graph"
src="https://morpheus.gitlab.io/media/model/m2074/m2074_f-actin-feedback-in-cell-motility_model-graph.svg"
loading="lazy" data-zoomable />&lt;/div>
&lt;/div>&lt;figcaption>
Model Graph
&lt;/figcaption>&lt;/figure>
&lt;h3 id="model-files-included">Model Files Included&lt;/h3>
&lt;h4 id="main-model-configurations">Main Model Configurations&lt;/h4>
&lt;ul>
&lt;li>&lt;span style="white-space: nowrap;">&lt;code>POLAR2TW_main.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/POLAR2TW_main.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/POLAR2TW_main.xml" title="Download XML file" data-bs-toggle="tooltip" download="POLAR2TW_main.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>: Transition from directed motion to turning (increasing $s(t)$, &lt;a href="https://arxiv.org/html/2602.08779v1#S4.F12" target="_blank" rel="noopener">Figure 12&lt;/a>)&lt;/li>
&lt;li>&lt;span style="white-space: nowrap;">&lt;code>TW2POLAR.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/TW2POLAR.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/TW2POLAR.xml" title="Download XML file" data-bs-toggle="tooltip" download="TW2POLAR.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>: Transition from turning to directed motion (decreasing $s(t)$, &lt;a href="https://arxiv.org/html/2602.08779v1#S4.F13" target="_blank" rel="noopener">Figure 13&lt;/a>)&lt;/li>
&lt;li>&lt;span style="white-space: nowrap;">&lt;code>CW_s_0.600.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/CW_s_0.600.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/CW_s_0.600.xml" title="Download XML file" data-bs-toggle="tooltip" download="CW_s_0.600.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>: Coexisting back-and-forth motility ($s = 0.600, L = 2\lambda$, &lt;a href="https://arxiv.org/html/2602.08779v1#S4.F10" target="_blank" rel="noopener">Figure 10&lt;/a>)&lt;/li>
&lt;li>&lt;span style="white-space: nowrap;">&lt;code>CW_s_0.8_noise.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/CW_s_0.8_noise.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/CW_s_0.8_noise.xml" title="Download XML file" data-bs-toggle="tooltip" download="CW_s_0.8_noise.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>: Exotic trajectories under noise ($s = 0.800, L = 2\lambda$, &lt;a href="https://arxiv.org/html/2602.08779v1#S4.F11" target="_blank" rel="noopener">Figure 11&lt;/a>)&lt;/li>
&lt;li>&lt;span style="white-space: nowrap;">&lt;code>Wobby_s_0.600.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/Wobby_s_0.600.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/Wobby_s_0.600.xml" title="Download XML file" data-bs-toggle="tooltip" download="Wobby_s_0.600.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>: Wobbly shape and speed oscillations ($s = 0.540$, &lt;a href="https://arxiv.org/html/2602.08779v1#S4.F9" target="_blank" rel="noopener">Figure 9&lt;/a>)&lt;/li>
&lt;li>&lt;span style="white-space: nowrap;">&lt;code>Random_motion.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/Random_motion.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/Random_motion.xml" title="Download XML file" data-bs-toggle="tooltip" download="Random_motion.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>: Random motion under fluctuating parameter $s(t)$ (&lt;a href="https://arxiv.org/html/2602.08779v1#S4.F14" target="_blank" rel="noopener">Figure 14&lt;/a>)&lt;/li>
&lt;li>&lt;span style="white-space: nowrap;">&lt;code>Dicty.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/Dicty.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/Dicty.xml" title="Download XML file" data-bs-toggle="tooltip" download="Dicty.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>: Amoeboid-like motility with continual noise ($s = 0.800, L = 4\lambda$, &lt;a href="https://arxiv.org/html/2602.08779v1#S4.F16" target="_blank" rel="noopener">Figure 16&lt;/a>)&lt;/li>
&lt;/ul>
&lt;h4 id="polar-cell-motility-branch-figure-7httpsarxivorghtml260208779v1s4f7">Polar Cell Motility Branch (&lt;a href="https://arxiv.org/html/2602.08779v1#S4.F7" target="_blank" rel="noopener">Figure 7&lt;/a>)&lt;/h4>
&lt;ul>
&lt;li>&lt;span style="white-space: nowrap;">&lt;code>polar_s_0.376.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/polar_s_0.376.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/polar_s_0.376.xml" title="Download XML file" data-bs-toggle="tooltip" download="polar_s_0.376.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>: Polar cell state at $s = 0.376$&lt;/li>
&lt;li>&lt;span style="white-space: nowrap;">&lt;code>polar_s_0.475.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/polar_s_0.475.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/polar_s_0.475.xml" title="Download XML file" data-bs-toggle="tooltip" download="polar_s_0.475.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>: Polar cell state at $s = 0.475$&lt;/li>
&lt;li>&lt;span style="white-space: nowrap;">&lt;code>polar_s_0.519.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/polar_s_0.519.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/polar_s_0.519.xml" title="Download XML file" data-bs-toggle="tooltip" download="polar_s_0.519.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>: Polar cell state at $s = 0.519$&lt;/li>
&lt;/ul>
&lt;h4 id="traveling-wave-ruffling-cell-branch-figure-8httpsarxivorghtml260208779v1s4f8">Traveling Wave Ruffling Cell Branch (&lt;a href="https://arxiv.org/html/2602.08779v1#S4.F8" target="_blank" rel="noopener">Figure 8&lt;/a>)&lt;/h4>
&lt;ul>
&lt;li>&lt;span style="white-space: nowrap;">&lt;code>tw_s_0.413.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/tw_s_0.413.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/tw_s_0.413.xml" title="Download XML file" data-bs-toggle="tooltip" download="tw_s_0.413.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>: Edge-ruffling cell state at $s = 0.413$&lt;/li>
&lt;li>&lt;span style="white-space: nowrap;">&lt;code>tw_s_0.475.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/tw_s_0.475.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/tw_s_0.475.xml" title="Download XML file" data-bs-toggle="tooltip" download="tw_s_0.475.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>: Edge-ruffling cell state at $s = 0.475$&lt;/li>
&lt;li>&lt;span style="white-space: nowrap;">&lt;code>tw_s_0.607.xml&lt;/code>&lt;a href="morpheus://morpheus.gitlab.io/media/model/m2074/tw_s_0.607.xml" title="Open in Morpheus with a click" data-bs-toggle="tooltip">&lt;i class="fas fa-magic pl-1 pr-1">&lt;/i>&lt;/a>&lt;a href="https://morpheus.gitlab.io/media/model/m2074/tw_s_0.607.xml" title="Download XML file" data-bs-toggle="tooltip" download="tw_s_0.607.xml">&lt;i class="fas fa-file-download">&lt;/i>&lt;/a>&lt;/span>: Edge-ruffling cell state at $s = 0.607$&lt;/li>
&lt;/ul>
&lt;h2 id="downloads">Downloads&lt;/h2>
&lt;p>Files associated with this model:&lt;/p>
&lt;ul>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/CW_s_0.600.xml" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>CW_s_0.600.xml&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/CW_s_0.8_noise.xml" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>CW_s_0.8_noise.xml&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/Dicty.xml" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>Dicty.xml&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/Fig10.png" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>Fig10.png&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/Fig11.png" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>Fig11.png&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/Fig12.png" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>Fig12.png&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/Fig13.png" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>Fig13.png&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/Fig14.png" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>Fig14.png&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/Fig16.png" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>Fig16.png&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/Fig5.png" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>Fig5.png&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/Fig7.png" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>Fig7.png&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/Fig8.png" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>Fig8.png&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/Fig9.png" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>Fig9.png&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/m2074_f-actin-feedback-in-cell-motility_model-graph.svg" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>m2074_f-actin-feedback-in-cell-motility_model-graph.svg&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/POLAR2TW_main.xml" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>POLAR2TW_main.xml&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/polar_s_0.376.xml" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>polar_s_0.376.xml&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/polar_s_0.475.xml" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>polar_s_0.475.xml&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/polar_s_0.519.xml" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>polar_s_0.519.xml&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/Random_motion.xml" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>Random_motion.xml&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/TW2POLAR.xml" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>TW2POLAR.xml&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/tw_s_0.413.xml" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>tw_s_0.413.xml&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/tw_s_0.475.xml" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>tw_s_0.475.xml&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/tw_s_0.607.xml" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>tw_s_0.607.xml&lt;/code>&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://gitlab.com/morpheus.lab/model-repo/-/blob/HEAD/Published%20Models/Cell%20Culture/F-Actin%20Feedback%20in%20Cell%20Motility/Wobby_s_0.600.xml" target="_blank" rel="noopener noreferrer" title="Show this file in Git repository" data-bs-toggle="tooltip">&lt;i class="fab fa-gitlab pr-1">&lt;/i>&lt;code>Wobby_s_0.600.xml&lt;/code>&lt;/a>&lt;/li>
&lt;/ul></description></item></channel></rss>